Uses of Class
org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerVertex
-
Packages that use TinkerVertex Package Description org.apache.tinkerpop.gremlin.tinkergraph.process.computer org.apache.tinkerpop.gremlin.tinkergraph.structure -
-
Uses of TinkerVertex in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with parameters of type TinkerVertex Modifier and Type Method Description <V> Property<V>
TinkerGraphComputerView. addProperty(TinkerVertex vertex, String key, V value)
List<Property>
TinkerGraphComputerView. getProperties(TinkerVertex vertex)
List<VertexProperty<?>>
TinkerGraphComputerView. getProperty(TinkerVertex vertex, String key)
void
TinkerGraphComputerView. removeProperty(TinkerVertex vertex, String key, VertexProperty property)
-
Uses of TinkerVertex in org.apache.tinkerpop.gremlin.tinkergraph.structure
Fields in org.apache.tinkerpop.gremlin.tinkergraph.structure with type parameters of type TinkerVertex Modifier and Type Field Description protected AbstractTinkerIndex<TinkerVertex>
AbstractTinkerGraph. vertexIndex
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return TinkerVertex Modifier and Type Method Description protected TinkerVertex
AbstractTinkerGraph. createTinkerVertex(Object id, String label, AbstractTinkerGraph graph)
protected TinkerVertex
AbstractTinkerGraph. createTinkerVertex(Object id, String label, AbstractTinkerGraph graph, long currentVersion)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return types with arguments of type TinkerVertex Modifier and Type Method Description static Iterator<TinkerVertex>
TinkerHelper. getVertices(TinkerVertex vertex, Direction direction, String... edgeLabels)
static Iterator<TinkerVertex>
TinkerHelper. getVerticesTx(TinkerVertex vertex, Direction direction, String... edgeLabels)
static List<TinkerVertex>
TinkerIndexHelper. queryVertexIndex(AbstractTinkerGraph graph, String key, Object value)
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type TinkerVertex Modifier and Type Method Description abstract Edge
AbstractTinkerGraph. addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues)
Edge
TinkerGraph. addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues)
Edge
TinkerTransactionGraph. addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues)
protected abstract void
AbstractTinkerGraph. addInEdge(TinkerVertex vertex, String label, Edge edge)
protected void
TinkerGraph. addInEdge(TinkerVertex vertex, String label, Edge edge)
protected void
TinkerTransactionGraph. addInEdge(TinkerVertex vertex, String label, Edge edge)
protected abstract void
AbstractTinkerGraph. addOutEdge(TinkerVertex vertex, String label, Edge edge)
protected void
TinkerGraph. addOutEdge(TinkerVertex vertex, String label, Edge edge)
protected void
TinkerTransactionGraph. addOutEdge(TinkerVertex vertex, String label, Edge edge)
static void
TinkerIndexHelper. autoUpdateIndex(TinkerVertex vertex, String key, Object newValue, Object oldValue)
TinkerVertexProperty
TinkerVertexProperty. copy(TinkerVertex newOwner)
protected <V> TinkerVertexProperty<V>
TinkerVertex. createTinkerVertexProperty(Object id, TinkerVertex vertex, String key, V value, Object... propertyKeyValues)
protected <V> TinkerVertexProperty<V>
TinkerVertex. createTinkerVertexProperty(TinkerVertex vertex, String key, V value, Object... propertyKeyValues)
static Iterator<TinkerEdge>
TinkerHelper. getEdges(TinkerVertex vertex, Direction direction, String... edgeLabels)
static Iterator<TinkerEdge>
TinkerHelper. getEdgesTx(TinkerVertex vertex, Direction direction, String... edgeLabels)
static Map<String,List<VertexProperty>>
TinkerHelper. getProperties(TinkerVertex vertex)
static Iterator<TinkerVertex>
TinkerHelper. getVertices(TinkerVertex vertex, Direction direction, String... edgeLabels)
static Iterator<TinkerVertex>
TinkerHelper. getVerticesTx(TinkerVertex vertex, Direction direction, String... edgeLabels)
static void
TinkerIndexHelper. removeElementIndex(TinkerVertex vertex)
static void
TinkerIndexHelper. removeIndex(TinkerVertex vertex, String key, Object value)
void
AbstractTinkerGraph. touch(TinkerVertex vertex)
MarkVertex
as changed in transaction.void
TinkerTransactionGraph. touch(TinkerVertex vertex)
Constructors in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type TinkerVertex Constructor Description TinkerVertexProperty(Object id, TinkerVertex vertex, String key, V value, Object... propertyKeyValues)
Use this constructor to constructVertexProperty
instances forTinkerGraph
where theid
can be explicitly set and validated against the expected data type.TinkerVertexProperty(TinkerVertex vertex, String key, V value, Object... propertyKeyValues)
This constructor will not validate the ID type against theGraph
.
-