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 | Interface and Description |
---|---|
interface |
EdgeModifier<VID> |
Modifier and Type | Method and Description |
---|---|
EdgeBuilder<VID> |
GraphBuilderImpl.addEdge(long edgeId, VertexBuilder<VID> srcVertex, VertexBuilder<VID> dstVertex) |
EdgeBuilder<VID> |
GraphBuilder.addEdge(long edgeId, VertexBuilder<VID> srcVertex, VertexBuilder<VID> dstVertex)
Adds an edge with the given edge ID and the given source and destination vertices.
|
EdgeBuilder<VID> |
GraphBuilderImpl.addEdge(long edgeId, VID srcVertex, VID dstVertex) |
EdgeBuilder<VID> |
GraphBuilder.addEdge(long edgeId, VID srcVertex, VID dstVertex)
Adds an edge with the given edge ID and the given source and destination vertices.
|
EdgeBuilder<VID> |
EdgeBuilder.setLabel(java.lang.String label)
Sets the new value of the label
|
EdgeBuilder<VID> |
EdgeBuilder.setProperty(java.lang.String key, java.lang.Object value)
Sets the property value of this edge with the given
key to the given value . |
Modifier and Type | Class and Description |
---|---|
class |
EdgeBuilderImpl<VID> |
class |
EdgeModifierImpl<VID> |
Modifier and Type | Method and Description |
---|---|
EdgeBuilder<VID> |
EdgeBuilderImpl.setLabel(java.lang.String label) |
EdgeBuilder<VID> |
EdgeBuilderImpl.setProperty(java.lang.String key, java.lang.Object value) |
Copyright © 2017 Oracle Corp. All Rights Reserved.