Class ConnectiveP<V>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.P<V>
-
- org.apache.tinkerpop.gremlin.process.traversal.util.ConnectiveP<V>
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Predicate<V>
public abstract class ConnectiveP<V> extends P<V>
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<P<V>>
predicates
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.P
biPredicate, originalValue, value
-
-
Constructor Summary
Constructors Constructor Description ConnectiveP(List<P<V>> predicates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description P<V>
and(Predicate<? super V> predicate)
ConnectiveP<V>
clone()
boolean
equals(Object other)
List<P<V>>
getPredicates()
int
hashCode()
P<V>
negate()
protected P<V>
negate(ConnectiveP<V> p)
P<V>
or(Predicate<? super V> predicate)
-