Uses of Class
org.apache.tinkerpop.gremlin.process.traversal.P
-
-
Uses of P in org.apache.tinkerpop.gremlin.groovy.jsr223
Methods in org.apache.tinkerpop.gremlin.groovy.jsr223 with parameters of type P Modifier and Type Method Description protected Script
GroovyTranslator.DefaultTypeTranslator. convertPToScript(P p)
-
Uses of P in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential
Methods in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential with parameters of type P Modifier and Type Method Description static <A> CredentialTraversal<A,A>
__. has(String label, String propertyKey, P<?> predicate)
static <A> CredentialTraversal<A,A>
__. has(String propertyKey, P<?> predicate)
static <A> CredentialTraversal<A,A>
__. has(T accessor, P<?> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. has(String label, String propertyKey, P<?> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. has(String propertyKey, P<?> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. has(T accessor, P<?> predicate)
static <A> CredentialTraversal<A,A>
__. hasId(P<Object> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. hasId(P<Object> predicate)
static <A> CredentialTraversal<A,A>
__. hasKey(P<String> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. hasKey(P<String> predicate)
static <A> CredentialTraversal<A,A>
__. hasLabel(P<String> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. hasLabel(P<String> predicate)
static <A> CredentialTraversal<A,A>
__. hasValue(P<Object> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. hasValue(P<Object> predicate)
static <A> CredentialTraversal<A,A>
__. is(P<A> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. is(P<E> predicate)
static <A> CredentialTraversal<A,A>
__. where(String startKey, P<String> predicate)
static <A> CredentialTraversal<A,A>
__. where(P<String> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. where(String startKey, P<String> predicate)
default CredentialTraversal<S,E>
CredentialTraversal. where(P<String> predicate)
-
Uses of P in org.apache.tinkerpop.gremlin.language.grammar
-
Uses of P in org.apache.tinkerpop.gremlin.process.traversal
Subclasses of P in org.apache.tinkerpop.gremlin.process.traversal Modifier and Type Class Description class
TextP
PredefinedPredicate
values that can be used asString
filters.Methods in org.apache.tinkerpop.gremlin.process.traversal that return P Modifier and Type Method Description P<V>
P. and(Predicate<? super V> predicate)
static <V> P<V>
P. between(V first, V second)
Determines if a value is within (inclusive) of the range of the two specified values.P<V>
P. clone()
static <V> P<V>
P. eq(V value)
Determines if values are equal.static <V> P<V>
P. gt(V value)
Determines if a value is greater than another.static <V> P<V>
P. gte(V value)
Determines if a value is greater than or equal to another.static <V> P<V>
P. inside(V first, V second)
Determines if a value is within (exclusive) the range of the two specified values.static <V> P<V>
P. lt(V value)
Determines if a value is less than another.static <V> P<V>
P. lte(V value)
Determines if a value is less than or equal to another.P<V>
P. negate()
static <V> P<V>
P. neq(V value)
Determines if values are not equal.static <V> P<V>
P. not(P<V> predicate)
The opposite of the specifiedP
.P<V>
P. or(Predicate<? super V> predicate)
static <V> P<V>
P. outside(V first, V second)
Determines if a value is not within (exclusive) of the range of the two specified values.static P
P. test(BiPredicate biPredicate, Object value)
Construct an instance ofP
from aBiPredicate
.static <V> P<V>
P. within(Collection<V> value)
Determines if a value is within the specified list of values.static <V> P<V>
P. within(V... values)
Determines if a value is within the specified list of values.static <V> P<V>
P. without(Collection<V> value)
Determines if a value is not within the specified list of values.static <V> P<V>
P. without(V... values)
Determines if a value is not within the specified list of values.Methods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type P Modifier and Type Method Description static <V> P<V>
P. not(P<V> predicate)
The opposite of the specifiedP
.protected abstract Script
Translator.ScriptTranslator.AbstractTypeTranslator. produceScript(P<?> p)
Take theP
and writes the syntax directly to the memberTranslator.ScriptTranslator.AbstractTypeTranslator.script
variable. -
Uses of P in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with parameters of type P Modifier and Type Method Description static <A> GraphTraversal<A,A>
__. has(String label, String propertyKey, P<?> predicate)
static <A> GraphTraversal<A,A>
__. has(String propertyKey, P<?> predicate)
static <A> GraphTraversal<A,A>
__. has(T accessor, P<?> predicate)
default GraphTraversal<S,E>
GraphTraversal. has(String label, String propertyKey, P<?> predicate)
Filters vertices, edges and vertex properties based on their properties.default GraphTraversal<S,E>
GraphTraversal. has(String propertyKey, P<?> predicate)
Filters vertices, edges and vertex properties based on their properties.default GraphTraversal<S,E>
GraphTraversal. has(T accessor, P<?> predicate)
Filters vertices, edges and vertex properties based on their properties.static <A> GraphTraversal<A,A>
__. hasId(P<Object> predicate)
default GraphTraversal<S,E>
GraphTraversal. hasId(P<Object> predicate)
Filters vertices, edges and vertex properties based on their identifier.static <A> GraphTraversal<A,A>
__. hasKey(P<String> predicate)
default GraphTraversal<S,E>
GraphTraversal. hasKey(P<String> predicate)
FiltersProperty
objects based on their key.static <A> GraphTraversal<A,A>
__. hasLabel(P<String> predicate)
default GraphTraversal<S,E>
GraphTraversal. hasLabel(P<String> predicate)
Filters vertices, edges and vertex properties based on their label.static <A> GraphTraversal<A,A>
__. hasValue(P<Object> predicate)
default GraphTraversal<S,E>
GraphTraversal. hasValue(P<Object> predicate)
FiltersProperty
objects based on their value.Note that calling this step withnull
is the same as callingGraphTraversal.hasValue(Object, Object...)
with a singlenull
.static <A> GraphTraversal<A,A>
__. is(P<A> predicate)
default GraphTraversal<S,E>
GraphTraversal. is(P<E> predicate)
FiltersE
object values given the providedpredicate
.static <A> GraphTraversal<A,A>
__. where(String startKey, P<String> predicate)
static <A> GraphTraversal<A,A>
__. where(P<String> predicate)
default GraphTraversal<S,E>
GraphTraversal. where(String startKey, P<String> predicate)
Filters the current object based on the object itself or the path history.default GraphTraversal<S,E>
GraphTraversal. where(P<String> predicate)
Filters the current object based on the object itself or the path history. -
Uses of P in org.apache.tinkerpop.gremlin.process.traversal.step.filter
Fields in org.apache.tinkerpop.gremlin.process.traversal.step.filter declared as P Modifier and Type Field Description protected P<Object>
WherePredicateStep. predicate
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.filter that return P Modifier and Type Method Description P<S>
IsStep. getPredicate()
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.filter that return types with arguments of type P Modifier and Type Method Description Optional<P<?>>
WherePredicateStep. getPredicate()
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.filter with parameters of type P Modifier and Type Method Description String
WherePredicateStep. getSelectKey(P<Object> predicate)
Constructors in org.apache.tinkerpop.gremlin.process.traversal.step.filter with parameters of type P Constructor Description IsStep(Traversal.Admin traversal, P<S> predicate)
WherePredicateStep(Traversal.Admin traversal, Optional<String> startKey, P<String> predicate)
-
Uses of P in org.apache.tinkerpop.gremlin.process.traversal.step.util
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.util that return P Modifier and Type Method Description P<?>
HasContainer. getPredicate()
Constructors in org.apache.tinkerpop.gremlin.process.traversal.step.util with parameters of type P Constructor Description HasContainer(String key, P<?> predicate)
-
Uses of P in org.apache.tinkerpop.gremlin.process.traversal.translator
Methods in org.apache.tinkerpop.gremlin.process.traversal.translator with parameters of type P Modifier and Type Method Description protected Script
DotNetTranslator.DefaultTypeTranslator. produceScript(P<?> p)
protected Script
GolangTranslator.DefaultTypeTranslator. produceScript(P<?> p)
protected Script
GroovyTranslator.DefaultTypeTranslator. produceScript(P<?> p)
protected Script
JavascriptTranslator.DefaultTypeTranslator. produceScript(P<?> p)
protected Script
PythonTranslator.DefaultTypeTranslator. produceScript(P<?> p)
-
Uses of P in org.apache.tinkerpop.gremlin.process.traversal.util
Subclasses of P in org.apache.tinkerpop.gremlin.process.traversal.util Modifier and Type Class Description class
AndP<V>
class
ConnectiveP<V>
class
OrP<V>
Fields in org.apache.tinkerpop.gremlin.process.traversal.util with type parameters of type P Modifier and Type Field Description protected List<P<V>>
ConnectiveP. predicates
Methods in org.apache.tinkerpop.gremlin.process.traversal.util that return P Modifier and Type Method Description P<V>
AndP. and(Predicate<? super V> predicate)
P<V>
ConnectiveP. and(Predicate<? super V> predicate)
P<V>
AndP. negate()
P<V>
ConnectiveP. negate()
protected P<V>
ConnectiveP. negate(ConnectiveP<V> p)
P<V>
OrP. negate()
P<V>
ConnectiveP. or(Predicate<? super V> predicate)
P<V>
OrP. or(Predicate<? super V> predicate)
Methods in org.apache.tinkerpop.gremlin.process.traversal.util that return types with arguments of type P Modifier and Type Method Description List<P<V>>
ConnectiveP. getPredicates()
Constructor parameters in org.apache.tinkerpop.gremlin.process.traversal.util with type arguments of type P Constructor Description AndP(List<P<V>> predicates)
ConnectiveP(List<P<V>> predicates)
OrP(List<P<V>> predicates)
-
Uses of P in org.apache.tinkerpop.gremlin.structure.io.binary.types
Classes in org.apache.tinkerpop.gremlin.structure.io.binary.types with type parameters of type P Modifier and Type Class Description class
PSerializer<T extends P>
-
Uses of P in org.apache.tinkerpop.gremlin.structure.io.gryo
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo that return P Modifier and Type Method Description <I extends InputShim>
PGryoSerializersV1d0.PSerializer. read(KryoShim<I,?> kryo, I input, Class<P> clazz)
<I extends InputShim>
PGryoSerializersV3d0.PSerializer. read(KryoShim<I,?> kryo, I input, Class<P> clazz)
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo with parameters of type P Modifier and Type Method Description <O extends OutputShim>
voidGryoSerializersV1d0.PSerializer. write(KryoShim<?,O> kryo, O output, P p)
<O extends OutputShim>
voidGryoSerializersV3d0.PSerializer. write(KryoShim<?,O> kryo, O output, P p)
Method parameters in org.apache.tinkerpop.gremlin.structure.io.gryo with type arguments of type P Modifier and Type Method Description <I extends InputShim>
PGryoSerializersV1d0.PSerializer. read(KryoShim<I,?> kryo, I input, Class<P> clazz)
<I extends InputShim>
PGryoSerializersV3d0.PSerializer. read(KryoShim<I,?> kryo, I input, Class<P> clazz)
-