Uses of Interface
oracle.pgx.api.VertexModifier
-
Packages that use VertexModifier Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.graphbuilder This package contains the APIs to build a new in-memory graph from scratch as well as the APIs to change an existing in-memory graph. -
-
Uses of VertexModifier in oracle.pgx.api
Methods in oracle.pgx.api that return VertexModifier Modifier and Type Method Description VertexModifier<VID>VertexModifier. addLabel(java.lang.String label)VertexModifier<VID>VertexModifier. removeLabel(java.lang.String label)Removes the given label from the vertex.VertexModifier<VID>VertexModifier. setProperty(java.lang.String key, java.lang.Object value)VertexModifier<VID>GraphChangeSet. updateVertex(VID vertexId)Returns aVertexModifierwith which you can update vertex properties.VertexModifier<VID>GraphChangeSetImpl. updateVertex(VID vertexId) -
Uses of VertexModifier in oracle.pgx.api.graphbuilder
Classes in oracle.pgx.api.graphbuilder that implement VertexModifier Modifier and Type Class Description classVertexModifierImpl<VID>Methods in oracle.pgx.api.graphbuilder that return VertexModifier Modifier and Type Method Description VertexModifier<VID>VertexModifierImpl. addLabel(java.lang.String label)Adds the given label to this vertexVertexModifier<VID>VertexModifierImpl. removeLabel(java.lang.String label)VertexModifier<VID>VertexModifierImpl. setProperty(java.lang.String key, java.lang.Object value)Sets the property value of this vertex with the givenkeyto the givenvalue.
-