Uses of Class
org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality
-
-
Uses of VertexProperty.Cardinality in org.apache.tinkerpop.gremlin.process.traversal
Methods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type VertexProperty.Cardinality Modifier and Type Method Description protected abstract String
Translator.ScriptTranslator.AbstractTypeTranslator. getSyntax(VertexProperty.Cardinality o)
Take theVertexProperty.Cardinality
argument and convert it to a string representation in the target language. -
Uses of VertexProperty.Cardinality in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with parameters of type VertexProperty.Cardinality Modifier and Type Method Description default GraphTraversal<S,E>
GraphTraversal. property(VertexProperty.Cardinality cardinality, Object key, Object value, Object... keyValues)
Sets aProperty
value and related meta properties if supplied, if supported by theGraph
and if theElement
is aVertexProperty
. -
Uses of VertexProperty.Cardinality in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure that return VertexProperty.Cardinality Modifier and Type Method Description default VertexProperty.Cardinality
Graph.Features.VertexFeatures. getCardinality(String key)
Gets theVertexProperty.Cardinality
for a key.static VertexProperty.Cardinality
VertexProperty.Cardinality. valueOf(String name)
Returns the enum constant of this type with the specified name.static VertexProperty.Cardinality[]
VertexProperty.Cardinality. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.tinkerpop.gremlin.structure with parameters of type VertexProperty.Cardinality Modifier and Type Method Description <V> VertexProperty<V>
Vertex. property(VertexProperty.Cardinality cardinality, String key, V value, Object... keyValues)
Create a new vertex property.
-