Uses of Interface
org.apache.tinkerpop.gremlin.structure.Property
-
-
Uses of Property in org.apache.tinkerpop.gremlin
Methods in org.apache.tinkerpop.gremlin with parameters of type Property Modifier and Type Method Description static void
TestHelper. validatePropertyEquality(Property originalProperty, Property otherProperty)
-
Uses of Property in org.apache.tinkerpop.gremlin.driver
Methods in org.apache.tinkerpop.gremlin.driver that return Property Modifier and Type Method Description <V> Property<V>
Result. getProperty()
Gets the result item by casting it to aProperty
. -
Uses of Property in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential
Methods in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential with type parameters of type Property Modifier and Type Method Description static <A extends Property>
CredentialTraversal<A,String>__. key()
static <A extends Property,B>
CredentialTraversal<A,B>__. value()
Methods in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential that return types with arguments of type Property Modifier and Type Method Description static <A extends Element,B>
CredentialTraversal<A,? extends Property<B>>__. properties(String... propertyKeys)
default <E2> CredentialTraversal<S,? extends Property<E2>>
CredentialTraversal. properties(String... propertyKeys)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.computer
Methods in org.apache.tinkerpop.gremlin.process.computer that return types with arguments of type Property Modifier and Type Method Description Traversal.Admin<Vertex,? extends Property<?>>
GraphFilter. getVertexPropertyFilter()
Get the vertex property filter associated with this graph filter.Iterator<? extends Property<?>>
GraphFilter. legalVertexProperties(Vertex vertex)
Returns an iterator of legal vertex properties.Method parameters in org.apache.tinkerpop.gremlin.process.computer with type arguments of type Property Modifier and Type Method Description void
GraphFilter. setVertexPropertyFilter(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
Set the filter for selecting vertex properties from the vertices.GraphComputer
GraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
Add a filter that will limit which vertex properties are loaded from the graph source.GraphComputer
GraphComputerTest.BadGraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.computer.util
Classes in org.apache.tinkerpop.gremlin.process.computer.util that implement Property Modifier and Type Class Description class
ComputerGraph.ComputerProperty<V>
class
ComputerGraph.ComputerVertexProperty<V>
Methods in org.apache.tinkerpop.gremlin.process.computer.util that return Property Modifier and Type Method Description Property<V>
ComputerGraph.ComputerProperty. getBaseProperty()
<V> Property<V>
ComputerGraph.ComputerElement. property(String key)
<V> Property<V>
ComputerGraph.ComputerElement. property(String key, V value)
Methods in org.apache.tinkerpop.gremlin.process.computer.util that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
ComputerGraph.ComputerEdge. properties(String... propertyKeys)
<V> Iterator<? extends Property<V>>
ComputerGraph.ComputerElement. properties(String... propertyKeys)
<U> Iterator<Property<U>>
ComputerGraph.ComputerVertexProperty. properties(String... propertyKeys)
Constructors in org.apache.tinkerpop.gremlin.process.computer.util with parameters of type Property Constructor Description ComputerProperty(Property<V> property)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with type parameters of type Property Modifier and Type Method Description static <A extends Property>
GraphTraversal<A,String>__. key()
static <A extends Property,B>
GraphTraversal<A,B>__. value()
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph that return types with arguments of type Property Modifier and Type Method Description static <A extends Element,B>
GraphTraversal<A,? extends Property<B>>__. properties(String... propertyKeys)
default <E2> GraphTraversal<S,? extends Property<E2>>
GraphTraversal. properties(String... propertyKeys)
Map theElement
to its associated properties given the provide property keys. -
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.step
Methods in org.apache.tinkerpop.gremlin.process.traversal.step that return types with arguments of type Property Modifier and Type Method Description abstract Traversal<Vertex,? extends Property>
OrderabilityTest. get_g_V_properties_order()
Traversal<Vertex,? extends Property>
OrderabilityTest.Traversals. get_g_V_properties_order()
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.step.filter
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.step.map
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.map with type parameters of type Property Modifier and Type Class Description class
ElementStep<P extends Property,E extends Element>
Fields in org.apache.tinkerpop.gremlin.process.traversal.step.map with type parameters of type Property Modifier and Type Field Description protected Traversal.Admin<Element,? extends Property>
PropertyMapStep. propertyTraversal
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.map that return types with arguments of type Property Modifier and Type Method Description Traversal.Admin<Element,? extends Property>
PropertyMapStep. getPropertyTraversal()
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.step.map with type arguments of type Property Modifier and Type Method Description protected String
PropertyKeyStep. map(Traverser.Admin<Property> traverser)
protected E
PropertyValueStep. map(Traverser.Admin<Property<E>> traverser)
void
PropertyMapStep. setPropertyTraversal(Traversal.Admin<Element,? extends Property> propertyTraversal)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.step.util
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.util with parameters of type Property Modifier and Type Method Description boolean
HasContainer. test(Property property)
static <V> boolean
HasContainer. testAll(Property<V> property, List<HasContainer> hasContainers)
protected boolean
HasContainer. testKey(Property property)
protected boolean
HasContainer. testValue(Property property)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.step.util.event
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.util.event with parameters of type Property Modifier and Type Method Description void
ConsoleMutationListener. edgePropertyChanged(Edge element, Property oldValue, Object setValue)
void
MutationListener. edgePropertyChanged(Edge element, Property oldValue, Object setValue)
Raised after the property of aEdge
changed.void
ConsoleMutationListener. edgePropertyRemoved(Edge element, Property removedValue)
void
MutationListener. edgePropertyRemoved(Edge element, Property property)
void
ConsoleMutationListener. vertexPropertyPropertyChanged(VertexProperty element, Property oldValue, Object setValue)
void
MutationListener. vertexPropertyPropertyChanged(VertexProperty element, Property oldValue, Object setValue)
Raised after the property of aVertexProperty
changed.void
ConsoleMutationListener. vertexPropertyPropertyRemoved(VertexProperty element, Property oldValue)
void
MutationListener. vertexPropertyPropertyRemoved(VertexProperty element, Property property)
Raised after anProperty
property was removed from aVertexProperty
.Constructors in org.apache.tinkerpop.gremlin.process.traversal.step.util.event with parameters of type Property Constructor Description EdgePropertyChangedEvent(Edge edge, Property oldValue, Object newValue)
EdgePropertyRemovedEvent(Edge element, Property removed)
ElementPropertyChangedEvent(Element element, Property oldValue, Object newValue, Object... vertexPropertyKeyValues)
ElementPropertyEvent(Element element, Property oldValue, Object newValue, Object... vertexPropertyKeyValues)
VertexPropertyChangedEvent(Vertex element, Property oldValue, Object newValue, Object... vertexPropertyKeyValues)
VertexPropertyPropertyChangedEvent(VertexProperty element, Property oldValue, Object newValue)
VertexPropertyPropertyRemovedEvent(VertexProperty element, Property removed)
-
Uses of Property in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration
Classes in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration with type parameters of type Property Modifier and Type Class Description class
PartitionStrategy.PartitionKeyHider<A extends Property>
A concrete lambda implementation that filters out the partition key so that it isn't visible when making calls toGraphTraversal.valueMap(java.lang.String...)
.Methods in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration that return types with arguments of type Property Modifier and Type Method Description Map<String,List<Property>>
PartitionStrategy.MapPropertiesConverter. apply(Traverser<Map<String,List<Property>>> mapTraverser)
Map<String,List<Property>>
PartitionStrategy.MapPropertiesFilter. apply(Traverser<Map<String,List<Property>>> mapTraverser)
Method parameters in org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration with type arguments of type Property Modifier and Type Method Description Map<String,List<Property>>
PartitionStrategy.MapPropertiesConverter. apply(Traverser<Map<String,List<Property>>> mapTraverser)
Map<String,List<Property>>
PartitionStrategy.MapPropertiesFilter. apply(Traverser<Map<String,List<Property>>> mapTraverser)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure
Subinterfaces of Property in org.apache.tinkerpop.gremlin.structure Modifier and Type Interface Description interface
VertexProperty<V>
Methods in org.apache.tinkerpop.gremlin.structure that return Property Modifier and Type Method Description static <V> Property<V>
Property. empty()
Create an empty property that is not present.default <V> Property<V>
Element. property(String key)
Get aProperty
for theElement
given its key.<V> Property<V>
Element. property(String key, V value)
Add or set a property value for theElement
given its key.Methods in org.apache.tinkerpop.gremlin.structure that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
Edge. properties(String... propertyKeys)
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys.<V> Iterator<? extends Property<V>>
Element. properties(String... propertyKeys)
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys.<U> Iterator<Property<U>>
VertexProperty. properties(String... propertyKeys)
Get anIterator
of properties where thepropertyKeys
is meant to be a filter on the available keys. -
Uses of Property in org.apache.tinkerpop.gremlin.structure.io
Methods in org.apache.tinkerpop.gremlin.structure.io that return Property Modifier and Type Method Description Property
GraphReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Reads a single property from anInputStream
.Methods in org.apache.tinkerpop.gremlin.structure.io with parameters of type Property Modifier and Type Method Description void
GraphWriter. writeProperty(OutputStream outputStream, Property p)
Write a property to a stream.Method parameters in org.apache.tinkerpop.gremlin.structure.io with type arguments of type Property Modifier and Type Method Description Property
GraphReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Reads a single property from anInputStream
.Property
GraphReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Reads a single property from anInputStream
. -
Uses of Property in org.apache.tinkerpop.gremlin.structure.io.binary.types
Methods in org.apache.tinkerpop.gremlin.structure.io.binary.types that return Property Modifier and Type Method Description protected Property
PropertySerializer. readValue(Buffer buffer, GraphBinaryReader context)
Methods in org.apache.tinkerpop.gremlin.structure.io.binary.types with parameters of type Property Modifier and Type Method Description protected void
PropertySerializer. writeValue(Property value, Buffer buffer, GraphBinaryWriter context)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.io.graphml
Methods in org.apache.tinkerpop.gremlin.structure.io.graphml that return Property Modifier and Type Method Description Property
GraphMLReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
This method is not supported for this reader.Methods in org.apache.tinkerpop.gremlin.structure.io.graphml with parameters of type Property Modifier and Type Method Description void
GraphMLWriter. writeProperty(OutputStream outputStream, Property p)
This method is not supported for this writer.Method parameters in org.apache.tinkerpop.gremlin.structure.io.graphml with type arguments of type Property Modifier and Type Method Description Property
GraphMLReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
This method is not supported for this reader.Property
GraphMLReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
This method is not supported for this reader. -
Uses of Property in org.apache.tinkerpop.gremlin.structure.io.graphson
Methods in org.apache.tinkerpop.gremlin.structure.io.graphson that return Property Modifier and Type Method Description Property
GraphSONReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Read aProperty
from output generated byGraphSONWriter.writeProperty(OutputStream, Property)
or via anProperty
passed toGraphSONWriter.writeObject(OutputStream, Object)
.Property
LegacyGraphSONReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
This method is not supported for this reader.Methods in org.apache.tinkerpop.gremlin.structure.io.graphson with parameters of type Property Modifier and Type Method Description void
GraphSONWriter. writeProperty(OutputStream outputStream, Property p)
Write aProperty
object to the stream. -
Uses of Property in org.apache.tinkerpop.gremlin.structure.io.gryo
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo that return Property Modifier and Type Method Description <I extends InputShim>
PropertyGryoSerializersV1.PropertySerializer. read(KryoShim<I,?> kryo, I input, Class<Property> propertyClass)
<I extends InputShim>
PropertyGryoSerializersV3.PropertySerializer. read(KryoShim<I,?> kryo, I input, Class<Property> propertyClass)
Property
GryoReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Read aProperty
from output generated byGryoWriter.writeProperty(OutputStream, Property)
or via anProperty
passed toGryoWriter.writeObject(OutputStream, Object)
.Methods in org.apache.tinkerpop.gremlin.structure.io.gryo with parameters of type Property Modifier and Type Method Description <O extends OutputShim>
voidGryoSerializersV1.PropertySerializer. write(KryoShim<?,O> kryo, O output, Property property)
<O extends OutputShim>
voidGryoSerializersV3.PropertySerializer. write(KryoShim<?,O> kryo, O output, Property property)
void
GryoWriter. writeProperty(OutputStream outputStream, Property p)
Write a property to a stream.Method parameters in org.apache.tinkerpop.gremlin.structure.io.gryo with type arguments of type Property Modifier and Type Method Description <I extends InputShim>
PropertyGryoSerializersV1.PropertySerializer. read(KryoShim<I,?> kryo, I input, Class<Property> propertyClass)
<I extends InputShim>
PropertyGryoSerializersV3.PropertySerializer. read(KryoShim<I,?> kryo, I input, Class<Property> propertyClass)
Property
GryoReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Read aProperty
from output generated byGryoWriter.writeProperty(OutputStream, Property)
or via anProperty
passed toGryoWriter.writeObject(OutputStream, Object)
.Property
GryoReader. readProperty(InputStream inputStream, Function<Attachable<Property>,Property> propertyAttachMethod)
Read aProperty
from output generated byGryoWriter.writeProperty(OutputStream, Property)
or via anProperty
passed toGryoWriter.writeObject(OutputStream, Object)
. -
Uses of Property in org.apache.tinkerpop.gremlin.structure.util
Fields in org.apache.tinkerpop.gremlin.structure.util with type parameters of type Property Modifier and Type Field Description static Comparator<Property>
Comparators. PROPERTY_COMPARATOR
Methods in org.apache.tinkerpop.gremlin.structure.util that return Property Modifier and Type Method Description static Property
Attachable.Method. createProperty(Attachable<Property> attachableProperty, Graph hostGraph)
static Property
Attachable.Method. createProperty(Attachable<Property> attachableProperty, Vertex hostVertex)
Methods in org.apache.tinkerpop.gremlin.structure.util that return types with arguments of type Property Modifier and Type Method Description static Optional<Property>
Attachable.Method. getProperty(Attachable<Property> attachableProperty, Graph hostGraph)
static Optional<Property>
Attachable.Method. getProperty(Attachable<Property> attachableProperty, Vertex hostVertex)
static Map<String,Property>
ElementHelper. propertyMap(Element element, String... propertyKeys)
Methods in org.apache.tinkerpop.gremlin.structure.util with parameters of type Property Modifier and Type Method Description static boolean
ElementHelper. areEqual(Property a, Object b)
A standard method for determining if twoProperty
objects are equal.static int
ElementHelper. hashCode(Property property)
If twoProperty
instances are equal, then they must have the same hash codes.static String
StringFactory. propertyString(Property property)
Construct the representation for aProperty
orVertexProperty
.Method parameters in org.apache.tinkerpop.gremlin.structure.util with type arguments of type Property Modifier and Type Method Description static Property
Attachable.Method. createProperty(Attachable<Property> attachableProperty, Graph hostGraph)
static Property
Attachable.Method. createProperty(Attachable<Property> attachableProperty, Vertex hostVertex)
static Optional<Property>
Attachable.Method. getProperty(Attachable<Property> attachableProperty, Graph hostGraph)
static Optional<Property>
Attachable.Method. getProperty(Attachable<Property> attachableProperty, Vertex hostVertex)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.util.detached
Classes in org.apache.tinkerpop.gremlin.structure.util.detached that implement Property Modifier and Type Class Description class
DetachedProperty<V>
class
DetachedVertexProperty<V>
Fields in org.apache.tinkerpop.gremlin.structure.util.detached with type parameters of type Property Modifier and Type Field Description protected Map<String,List<Property>>
DetachedElement. properties
Methods in org.apache.tinkerpop.gremlin.structure.util.detached that return Property Modifier and Type Method Description Property<V>
DetachedProperty. get()
<V> Property<V>
DetachedElement. property(String key)
<V> Property<V>
DetachedElement. property(String key, V value)
Methods in org.apache.tinkerpop.gremlin.structure.util.detached that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
DetachedEdge. properties(String... propertyKeys)
<V> Iterator<? extends Property<V>>
DetachedElement. properties(String... propertyKeys)
<U> Iterator<Property<U>>
DetachedVertexProperty. properties(String... propertyKeys)
Methods in org.apache.tinkerpop.gremlin.structure.util.detached with parameters of type Property Modifier and Type Method Description DetachedEdge.Builder
DetachedEdge.Builder. addProperty(Property p)
DetachedVertexProperty.Builder
DetachedVertexProperty.Builder. addProperty(Property p)
static <V> DetachedProperty<V>
DetachedFactory. detach(Property<V> property)
Constructors in org.apache.tinkerpop.gremlin.structure.util.detached with parameters of type Property Constructor Description DetachedProperty(Property<V> property)
Constructor parameters in org.apache.tinkerpop.gremlin.structure.util.detached with type arguments of type Property Constructor Description DetachedEdge(Object id, String label, List<Property> properties, Object outVId, String outVLabel, Object inVId, String inVLabel)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.util.empty
Classes in org.apache.tinkerpop.gremlin.structure.util.empty that implement Property Modifier and Type Class Description class
EmptyProperty<V>
class
EmptyVertexProperty<V>
Methods in org.apache.tinkerpop.gremlin.structure.util.empty that return Property Modifier and Type Method Description static <V> Property<V>
EmptyProperty. instance()
<U> Property<U>
EmptyVertexProperty. property(String key)
<U> Property<U>
EmptyVertexProperty. property(String key, U value)
Methods in org.apache.tinkerpop.gremlin.structure.util.empty that return types with arguments of type Property Modifier and Type Method Description <U> Iterator<Property<U>>
EmptyVertexProperty. properties(String... propertyKeys)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.util.keyed
Classes in org.apache.tinkerpop.gremlin.structure.util.keyed that implement Property Modifier and Type Class Description class
KeyedProperty<V>
A utility implementation of aProperty
that only has a key but no value.class
KeyedVertexProperty<V>
A utility implementation of aProperty
that only has a key but no value and no meta-properties.Methods in org.apache.tinkerpop.gremlin.structure.util.keyed that return Property Modifier and Type Method Description <U> Property<U>
KeyedVertexProperty. property(String key)
<U> Property<U>
KeyedVertexProperty. property(String key, U value)
Methods in org.apache.tinkerpop.gremlin.structure.util.keyed that return types with arguments of type Property Modifier and Type Method Description <U> Iterator<Property<U>>
KeyedVertexProperty. properties(String... propertyKeys)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.util.reference
Classes in org.apache.tinkerpop.gremlin.structure.util.reference that implement Property Modifier and Type Class Description class
ReferenceProperty<V>
class
ReferenceVertexProperty<V>
Methods in org.apache.tinkerpop.gremlin.structure.util.reference that return Property Modifier and Type Method Description Property<V>
ReferenceProperty. get()
<V> Property<V>
ReferenceEdge. property(String key, V value)
<U> Property<U>
ReferenceVertexProperty. property(String key, U value)
Methods in org.apache.tinkerpop.gremlin.structure.util.reference that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
ReferenceEdge. properties(String... propertyKeys)
<U> Iterator<Property<U>>
ReferenceVertexProperty. properties(String... propertyKeys)
Methods in org.apache.tinkerpop.gremlin.structure.util.reference with parameters of type Property Modifier and Type Method Description static <V> ReferenceProperty<V>
ReferenceFactory. detach(Property<V> property)
Constructors in org.apache.tinkerpop.gremlin.structure.util.reference with parameters of type Property Constructor Description ReferenceProperty(Property<V> property)
-
Uses of Property in org.apache.tinkerpop.gremlin.structure.util.star
Classes in org.apache.tinkerpop.gremlin.structure.util.star that implement Property Modifier and Type Class Description class
StarGraph.StarProperty<V>
class
StarGraph.StarVertexProperty<V>
Methods in org.apache.tinkerpop.gremlin.structure.util.star that return Property Modifier and Type Method Description Property<V>
StarGraph.StarProperty. get()
<V> Property<V>
StarGraph.StarEdge. property(String key, V value)
<U> Property<U>
StarGraph.StarVertexProperty. property(String key, U value)
Methods in org.apache.tinkerpop.gremlin.structure.util.star that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
StarGraph.StarEdge. properties(String... propertyKeys)
<U> Iterator<Property<U>>
StarGraph.StarVertexProperty. properties(String... propertyKeys)
-
Uses of Property in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer that return Property Modifier and Type Method Description <V> Property<V>
TinkerGraphComputerView. addProperty(TinkerVertex vertex, String key, V value)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer that return types with arguments of type Property Modifier and Type Method Description List<Property>
TinkerGraphComputerView. getProperties(TinkerVertex vertex)
Method parameters in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with type arguments of type Property Modifier and Type Method Description GraphComputer
TinkerGraphComputer. vertexProperties(Traversal<Vertex,? extends Property<?>> vertexPropertyFilter)
-
Uses of Property in org.apache.tinkerpop.gremlin.tinkergraph.structure
Classes in org.apache.tinkerpop.gremlin.tinkergraph.structure that implement Property Modifier and Type Class Description class
TinkerProperty<V>
class
TinkerVertexProperty<V>
Fields in org.apache.tinkerpop.gremlin.tinkergraph.structure with type parameters of type Property Modifier and Type Field Description protected Map<String,Property>
TinkerEdge. properties
protected Map<String,Property>
TinkerVertexProperty. properties
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return Property Modifier and Type Method Description <V> Property<V>
TinkerEdge. property(String key)
<V> Property<V>
TinkerEdge. property(String key, V value)
<U> Property<U>
TinkerVertexProperty. property(String key)
<U> Property<U>
TinkerVertexProperty. property(String key, U value)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return types with arguments of type Property Modifier and Type Method Description <V> Iterator<Property<V>>
TinkerEdge. properties(String... propertyKeys)
<U> Iterator<Property<U>>
TinkerVertexProperty. properties(String... propertyKeys)
static <E extends Element>
Iterator<Property>TinkerHelper. search(AbstractTinkerGraph graph, String regex, Optional<Class<E>> type)
static Iterator<Property>
TinkerHelper. search(TinkerGraph graph, String regex)
-