Uses of Class
org.apache.tinkerpop.gremlin.gql.PropertyPredicate
Packages that use PropertyPredicate
-
Uses of PropertyPredicate in org.apache.tinkerpop.gremlin.gql
Methods in org.apache.tinkerpop.gremlin.gql that return PropertyPredicateModifier and TypeMethodDescriptionstatic PropertyPredicateCreates a literal predicate:element.property(key) == value.static PropertyPredicateCreates a parameter-reference predicate: the expected value is resolved from the params map at execution time usingparamNameas the key.Methods in org.apache.tinkerpop.gremlin.gql that return types with arguments of type PropertyPredicateModifier and TypeMethodDescriptionExtensionStep.getEdgePredicates()Property equality predicates that the traversed edge must satisfy.QueryEdge.getPredicates()Returns the property equality predicates on this edge, or an empty list if none were specified.QueryVertex.getPredicates()Returns the property predicates parsed from the inline filter map, or an empty list if no property filter was specified.GqlMatchPlan.getSeedPredicates()Returns property equality predicates on the seed node derived from its inline filter map.ExtensionStep.getTargetPredicates()Property equality predicates that the target vertex must satisfy, derived from the inline filter map on the targetQueryVertex.Constructor parameters in org.apache.tinkerpop.gremlin.gql with type arguments of type PropertyPredicateModifierConstructorDescriptionExtensionStep(String anchorVariable, String edgeLabel, Direction direction, String edgeVariable, String targetLabel, String targetVariable, List<PropertyPredicate> targetPredicates) ExtensionStep(String anchorVariable, String edgeLabel, Direction direction, String edgeVariable, String targetLabel, String targetVariable, List<PropertyPredicate> targetPredicates, long estimatedCost) ExtensionStep(String anchorVariable, String edgeLabel, Direction direction, String edgeVariable, List<PropertyPredicate> edgePredicates, String targetLabel, String targetVariable, List<PropertyPredicate> targetPredicates, long estimatedCost) QueryEdge(String variable, String label, Direction direction, QueryVertex source, QueryVertex target, List<PropertyPredicate> predicates) QueryVertex(String variable, String label, List<PropertyPredicate> predicates)