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.
|
Modifier and Type | Method and 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 a
VertexModifier with which you can update vertex properties. |
VertexModifier<VID> |
GraphChangeSetImpl.updateVertex(VID vertexId) |
Modifier and Type | Class and Description |
---|---|
class |
VertexModifierImpl<VID> |
Modifier and Type | Method and Description |
---|---|
VertexModifier<VID> |
VertexModifierImpl.addLabel(java.lang.String label)
Adds the given label to this vertex
|
VertexModifier<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 given
key to the given value . |
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.