Modifier and Type | Method and Description |
---|---|
P<V> |
P.and(Predicate<? super V> predicate) |
static <V> P<V> |
P.between(V first,
V second) |
P<V> |
P.clone() |
static <V> P<V> |
P.eq(V value) |
static <V> P<V> |
P.gt(V value) |
static <V> P<V> |
P.gte(V value) |
static <V> P<V> |
P.inside(V first,
V second) |
static <V> P<V> |
P.lt(V value) |
static <V> P<V> |
P.lte(V value) |
P<V> |
P.negate() |
static <V> P<V> |
P.neq(V value) |
static <V> P<V> |
P.not(P<V> predicate) |
P<V> |
P.or(Predicate<? super V> predicate) |
static <V> P<V> |
P.outside(V first,
V second) |
static P |
P.test(BiPredicate biPredicate,
Object value) |
static <V> P<V> |
P.within(Collection<V> value) |
static <V> P<V> |
P.within(V... values) |
static <V> P<V> |
P.without(Collection<V> value) |
static <V> P<V> |
P.without(V... values) |
Modifier and Type | Method and Description |
---|---|
static <V> P<V> |
P.not(P<V> predicate) |
Modifier and Type | Method and Description |
---|---|
default GraphTraversal<S,E> |
GraphTraversal.has(String propertyKey,
P<?> predicate) |
static <A> GraphTraversal<A,A> |
__.has(String propertyKey,
P<?> predicate) |
default GraphTraversal<S,E> |
GraphTraversal.has(String label,
String propertyKey,
P<?> predicate) |
static <A> GraphTraversal<A,A> |
__.has(String label,
String propertyKey,
P<?> predicate) |
default GraphTraversal<S,E> |
GraphTraversal.has(T accessor,
P<?> predicate) |
static <A> GraphTraversal<A,A> |
__.has(T accessor,
P<?> predicate) |
static <A> GraphTraversal<A,A> |
__.is(P<A> predicate) |
default GraphTraversal<S,E> |
GraphTraversal.is(P<E> predicate) |
default GraphTraversal<S,E> |
GraphTraversal.where(P<String> predicate) |
static <A> GraphTraversal<A,A> |
__.where(P<String> predicate) |
default GraphTraversal<S,E> |
GraphTraversal.where(String startKey,
P<String> predicate) |
static <A> GraphTraversal<A,A> |
__.where(String startKey,
P<String> predicate) |
Modifier and Type | Field and Description |
---|---|
protected P<Object> |
WherePredicateStep.predicate |
Modifier and Type | Method and Description |
---|---|
P<S> |
IsStep.getPredicate() |
Modifier and Type | Method and Description |
---|---|
Optional<P<?>> |
WherePredicateStep.getPredicate() |
Constructor and Description |
---|
IsStep(Traversal.Admin traversal,
P<S> predicate) |
WherePredicateStep(Traversal.Admin traversal,
Optional<String> startKey,
P<String> predicate) |
Modifier and Type | Method and Description |
---|---|
P<?> |
HasContainer.getPredicate() |
Modifier and Type | Method and Description |
---|---|
static HasContainer[] |
HasContainer.makeHasContainers(String key,
P<?> predicate) |
Constructor and Description |
---|
HasContainer(String key,
P<?> predicate) |
Modifier and Type | Class and Description |
---|---|
class |
AndP<V> |
class |
ConjunctionP<V> |
class |
OrP<V> |
Modifier and Type | Field and Description |
---|---|
protected List<P<V>> |
ConjunctionP.predicates |
Modifier and Type | Method and Description |
---|---|
P<V> |
AndP.and(Predicate<? super V> predicate) |
P<V> |
ConjunctionP.and(Predicate<? super V> predicate) |
P<V> |
AndP.negate() |
P<V> |
OrP.negate() |
P<V> |
ConjunctionP.negate() |
protected P<V> |
ConjunctionP.negate(ConjunctionP<V> p) |
P<V> |
OrP.or(Predicate<? super V> predicate) |
P<V> |
ConjunctionP.or(Predicate<? super V> predicate) |
Modifier and Type | Method and Description |
---|---|
List<P<V>> |
ConjunctionP.getPredicates() |
Constructor and Description |
---|
AndP(P<V>... predicates) |
ConjunctionP(P<V>... predicates) |
OrP(P<V>... predicates) |
Copyright © 2013–2015 Apache Software Foundation. All rights reserved.