Uses of Interface
org.apache.tinkerpop.gremlin.process.traversal.PBiPredicate
-
Packages that use PBiPredicate Package Description org.apache.tinkerpop.gremlin.process.traversal -
-
Uses of PBiPredicate in org.apache.tinkerpop.gremlin.process.traversal
Classes in org.apache.tinkerpop.gremlin.process.traversal that implement PBiPredicate Modifier and Type Class Description class
Compare
Compare
is aBiPredicate
that determines whether the first argument is==
,!=
,>
,>=
,<
,<=
to the second argument.class
Contains
Contains
is aBiPredicate
that evaluates whether the first object is contained within (or not within) the second collection object.class
Text
Text
is aBiPredicate
that determines whether the first string starts with, starts not with, ends with, ends not with, contains or does not contain the second string argument.static class
Text.RegexPredicate
Allows for a compiled version of the regex pattern.Fields in org.apache.tinkerpop.gremlin.process.traversal declared as PBiPredicate Modifier and Type Field Description protected PBiPredicate<V,V>
P. biPredicate
Methods in org.apache.tinkerpop.gremlin.process.traversal that return PBiPredicate Modifier and Type Method Description PBiPredicate<V,V>
P. getBiPredicate()
default PBiPredicate<T,U>
PBiPredicate. negate()
Returns a predicate that represents the logical negation of this predicate.PBiPredicate<String,String>
Text.RegexPredicate. negate()
Methods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type PBiPredicate Modifier and Type Method Description static P
P. test(PBiPredicate biPredicate, Object value)
Construct an instance ofP
from aBiPredicate
.Constructors in org.apache.tinkerpop.gremlin.process.traversal with parameters of type PBiPredicate Constructor Description P(PBiPredicate<V,V> biPredicate, V value)
TextP(PBiPredicate<String,String> biPredicate, String value)
-