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> |
GraphChangeSet.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> |
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> |
GraphChangeSetImpl.addEdge(long edgeId,
VertexBuilder<VID> srcVertex,
VertexBuilder<VID> dstVertex) |
EdgeBuilder<VID> |
GraphBuilderImpl.addEdge(long edgeId,
VID srcVertex,
VID dstVertex) |
EdgeBuilder<VID> |
GraphChangeSet.addEdge(long edgeId,
VID srcVertex,
VID dstVertex)
Adds an edge with the given edge ID and the given source and destination vertices.
|
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> |
GraphBuilderImpl.addEdge(VertexBuilder<VID> srcVertex,
VertexBuilder<VID> dstVertex) |
EdgeBuilder<VID> |
GraphBuilder.addEdge(VertexBuilder<VID> srcVertex,
VertexBuilder<VID> dstVertex)
Adds an edge with an implicit ID and the given source and destination vertices.
|
EdgeBuilder<VID> |
GraphChangeSetImpl.addEdge(VertexBuilder<VID> srcVertex,
VertexBuilder<VID> dstVertex) |
EdgeBuilder<VID> |
GraphBuilderImpl.addEdge(VID srcVertex,
VID dstVertex) |
EdgeBuilder<VID> |
GraphBuilder.addEdge(VID srcVertex,
VID dstVertex)
Adds an edge with an implicit 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 © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.