Uses of Class
org.neo4j.cdc.client.model.EntityOperation
-
Packages that use EntityOperation Package Description org.neo4j.cdc.client.model Package defining change events.org.neo4j.cdc.client.selector Package defining selectors. -
-
Uses of EntityOperation in org.neo4j.cdc.client.model
Methods in org.neo4j.cdc.client.model that return EntityOperation Modifier and Type Method Description static EntityOperationEntityOperation. fromShorthand(String shorthand)EntityOperationEntityEvent. getOperation()Type of the operation.static EntityOperationEntityOperation. valueOf(String name)Returns the enum constant of this type with the specified name.static EntityOperation[]EntityOperation. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.neo4j.cdc.client.model with parameters of type EntityOperation Constructor Description EntityEvent(String elementId, EventType eventType, EntityOperation operation, T before, T after)NodeEvent(String elementId, EntityOperation operation, List<String> labels, Map<String,List<Map<String,Object>>> keys, NodeState before, NodeState after)RelationshipEvent(String elementId, String type, Node start, Node end, List<Map<String,Object>> keys, EntityOperation operation, RelationshipState before, RelationshipState after) -
Uses of EntityOperation in org.neo4j.cdc.client.selector
Fields in org.neo4j.cdc.client.selector declared as EntityOperation Modifier and Type Field Description protected EntityOperationEntitySelector.Builder. operationMethods in org.neo4j.cdc.client.selector that return EntityOperation Modifier and Type Method Description @Nullable EntityOperationEntitySelector. getOperation()Operation type performed on the entity.Methods in org.neo4j.cdc.client.selector with parameters of type EntityOperation Modifier and Type Method Description TEntitySelector.Builder. withOperation(EntityOperation operation)Set an operation type filter on the selector to be built.Constructors in org.neo4j.cdc.client.selector with parameters of type EntityOperation Constructor Description EntitySelector(@Nullable EntityOperation operation, @NotNull Set<String> changesTo, @Nullable String executingUser, @Nullable String authenticatedUser, @NotNull Map<String,Object> txMetadata, @NotNull Set<String> includeProperties, @NotNull Set<String> excludeProperties)
-