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.traversalClasses in org.apache.tinkerpop.gremlin.process.traversal that implement PBiPredicate Modifier and Type Class Description classCompareCompareis aBiPredicatethat determines whether the first argument is==,!=,>,>=,<,<=to the second argument.classCompareTypeCompareTypeis aBiPredicatethat determines whether the first argument is a type of the second argument.classContainsContainsis aBiPredicatethat evaluates whether the first object is contained within (or not within) the second collection object.static classNotP.NotPBiPredicate<T,U>A NotPBiPredicate wraps a PBiPredicate and represents its negation.classTextTextis aBiPredicatethat 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 classText.RegexPredicateAllows 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. biPredicateMethods in org.apache.tinkerpop.gremlin.process.traversal that return PBiPredicate Modifier and Type Method Description PBiPredicate<V,V>P. getBiPredicate()PBiPredicate<T,U>NotP.NotPBiPredicate. getOriginal()PBiPredicate<T,U>NotP.NotPBiPredicate. negate()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 PP. test(PBiPredicate biPredicate, Object value)Construct an instance ofPfrom aBiPredicate.Constructors in org.apache.tinkerpop.gremlin.process.traversal with parameters of type PBiPredicate Constructor Description NotPBiPredicate(PBiPredicate<T,U> predicate)P(PBiPredicate<V,V> biPredicate, Collection<V> literals, Map<String,V> variables, boolean isCollection)P(PBiPredicate<V,V> biPredicate, GValue<V> value)P(PBiPredicate<V,V> biPredicate, V value)TextP(PBiPredicate<String,String> biPredicate, String value)TextP(PBiPredicate<String,String> biPredicate, Collection<String> literals, Map<String,String> variables)TextP(PBiPredicate<String,String> biPredicate, GValue<String> value)
 
-