Uses of Class
org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerVertex
Packages that use TinkerVertex
Package
Description
-
Uses of TinkerVertex in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Methods in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with parameters of type TinkerVertexModifier and TypeMethodDescription<V> Property<V>TinkerGraphComputerView.addProperty(TinkerVertex vertex, String key, V value) TinkerGraphComputerView.getProperties(TinkerVertex vertex) List<VertexProperty<?>>TinkerGraphComputerView.getProperty(TinkerVertex vertex, String key) voidTinkerGraphComputerView.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 TinkerVertexModifier and TypeFieldDescriptionprotected AbstractTinkerIndex<TinkerVertex>AbstractTinkerGraph.vertexIndexMethods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return TinkerVertexModifier and TypeMethodDescriptionprotected TinkerVertexAbstractTinkerGraph.createTinkerVertex(Object id, String label, AbstractTinkerGraph graph) protected TinkerVertexAbstractTinkerGraph.createTinkerVertex(Object id, String label, AbstractTinkerGraph graph, long currentVersion) protected TinkerVertexAbstractTinkerGraph.createTinkerVertex(Object id, Set<String> labels, AbstractTinkerGraph graph) Creates a TinkerVertex with multiple labels.Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return types with arguments of type TinkerVertexModifier and TypeMethodDescriptionstatic 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 TinkerVertexModifier and TypeMethodDescriptionabstract EdgeAbstractTinkerGraph.addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues) TinkerGraph.addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues) TinkerTransactionGraph.addEdge(TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues) protected abstract voidAbstractTinkerGraph.addInEdge(TinkerVertex vertex, String label, Edge edge) protected voidTinkerGraph.addInEdge(TinkerVertex vertex, String label, Edge edge) protected voidTinkerTransactionGraph.addInEdge(TinkerVertex vertex, String label, Edge edge) protected abstract voidAbstractTinkerGraph.addOutEdge(TinkerVertex vertex, String label, Edge edge) protected voidTinkerGraph.addOutEdge(TinkerVertex vertex, String label, Edge edge) protected voidTinkerTransactionGraph.addOutEdge(TinkerVertex vertex, String label, Edge edge) voidAbstractTinkerGraph.addVertexLabels(TinkerVertex vertex, Set<String> labelsAdded) Called when one or more labels have been added to an existing vertex, allowing the graph to update any internal label indices.voidTinkerGraph.addVertexLabels(TinkerVertex vertex, Set<String> labelsAdded) static voidTinkerIndexHelper.autoUpdateIndex(TinkerVertex vertex, String key, Object newValue, Object oldValue) 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 voidTinkerIndexHelper.removeElementIndex(TinkerVertex vertex) static voidTinkerIndexHelper.removeIndex(TinkerVertex vertex, String key, Object value) voidAbstractTinkerGraph.removeVertexLabels(TinkerVertex vertex, Set<String> labelsRemoved) Called when one or more labels have been removed from an existing vertex, allowing the graph to update any internal label indices.voidTinkerGraph.removeVertexLabels(TinkerVertex vertex, Set<String> labelsRemoved) voidAbstractTinkerGraph.touch(TinkerVertex vertex) MarkVertexas changed in transaction.voidTinkerTransactionGraph.touch(TinkerVertex vertex) Constructors in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type TinkerVertexModifierConstructorDescriptionTinkerVertexProperty(Object id, TinkerVertex vertex, String key, V value, Object... propertyKeyValues) Use this constructor to constructVertexPropertyinstances forTinkerGraphwhere theidcan 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.