Uses of Class
org.apache.tinkerpop.gremlin.process.traversal.TextP
-
Packages that use TextP Package Description org.apache.tinkerpop.gremlin.process.traversal org.apache.tinkerpop.gremlin.structure.io.gryo -
-
Uses of TextP in org.apache.tinkerpop.gremlin.process.traversal
Methods in org.apache.tinkerpop.gremlin.process.traversal that return TextP Modifier and Type Method Description TextP
TextP. clone()
static TextP
TextP. containing(String value)
Determines if String does contain the given value.static TextP
TextP. endingWith(String value)
Determines if String does start with the given value.TextP
TextP. negate()
static TextP
TextP. notContaining(String value)
Determines if String does not contain the given value.static TextP
TextP. notEndingWith(String value)
Determines if String does not start with the given value.static TextP
TextP. notRegex(String value)
Determines if String has no match with the given regex pattern and the reference implementation treats it as a simple negation of the evaluation of the pattern match ofregex(String)
.static TextP
TextP. notStartingWith(String value)
Determines if String does not start with the given value.static TextP
TextP. regex(String value)
Determines if String has a match with the given regex pattern.static TextP
TextP. startingWith(String value)
Determines if String does start with the given value. -
Uses of TextP in org.apache.tinkerpop.gremlin.structure.io.gryo
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo that return TextP Modifier and Type Method Description <I extends InputShim>
TextPGryoSerializersV1d0.TextPSerializer. read(KryoShim<I,?> kryo, I input, Class<TextP> clazz)
<I extends InputShim>
TextPGryoSerializersV3d0.TextPSerializer. read(KryoShim<I,?> kryo, I input, Class<TextP> clazz)
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo with parameters of type TextP Modifier and Type Method Description <O extends OutputShim>
voidGryoSerializersV1d0.TextPSerializer. write(KryoShim<?,O> kryo, O output, TextP p)
<O extends OutputShim>
voidGryoSerializersV3d0.TextPSerializer. write(KryoShim<?,O> kryo, O output, TextP p)
Method parameters in org.apache.tinkerpop.gremlin.structure.io.gryo with type arguments of type TextP Modifier and Type Method Description <I extends InputShim>
TextPGryoSerializersV1d0.TextPSerializer. read(KryoShim<I,?> kryo, I input, Class<TextP> clazz)
<I extends InputShim>
TextPGryoSerializersV3d0.TextPSerializer. read(KryoShim<I,?> kryo, I input, Class<TextP> clazz)
-