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> |
interface |
VertexModifier<VID> |
Modifier and Type | Class and Description |
---|---|
class |
GraphChangeSetImpl<VID> |
Modifier and Type | Method and Description |
---|---|
<ID extends java.lang.Comparable<ID>> |
PgxGraph.createChangeSet()
Creates a change set for updating the graph.
|
GraphChangeSet<VID> |
GraphChangeSet.removeEdge(long edgeId)
Removes an edge from the graph.
|
GraphChangeSet<VID> |
GraphChangeSetImpl.removeEdge(long edgeId) |
GraphChangeSet<VID> |
GraphChangeSet.removeVertex(VID vertexId)
Removes a vertex from the graph.
|
GraphChangeSet<VID> |
GraphChangeSetImpl.removeVertex(VID vertexId) |
GraphChangeSet<VID> |
GraphChangeSet.resetEdge(long edgeId) |
GraphChangeSet<VID> |
GraphChangeSetImpl.resetEdge(long edgeId) |
GraphChangeSet<VID> |
GraphChangeSet.resetVertex(VertexBuilder<VID> vertex) |
GraphChangeSet<VID> |
GraphChangeSetImpl.resetVertex(VertexBuilder<VID> vertex) |
GraphChangeSet<VID> |
GraphChangeSet.resetVertex(VID vertexId) |
GraphChangeSet<VID> |
GraphChangeSetImpl.resetVertex(VID vertexId) |
GraphChangeSet<VID> |
GraphChangeSet.setAddExistingEdgePolicy(OnAddExistingElement addExistingEdgePolicy)
Sets the policy on what to do when an edge is added that already exists
|
GraphChangeSet<VID> |
GraphChangeSetImpl.setAddExistingEdgePolicy(OnAddExistingElement addExistingEdgePolicy) |
GraphChangeSet<VID> |
GraphChangeSet.setAddExistingVertexPolicy(OnAddExistingElement addExistingVertexPolicy)
Sets the policy on what to do when a vertex is added that already exists
|
GraphChangeSet<VID> |
GraphChangeSetImpl.setAddExistingVertexPolicy(OnAddExistingElement addExistingVertexPolicy) |
default GraphChangeSet<VID> |
GraphChangeSet.setRetainEdgeIds(boolean retainEdgeIds) |
default GraphChangeSet<VID> |
GraphChangeSet.setRetainIds(boolean retainIds) |
default GraphChangeSet<VID> |
GraphChangeSet.setRetainVertexIds(boolean retainVertexIds) |
Modifier and Type | Class and Description |
---|---|
class |
EdgeModifierImpl<VID> |
class |
VertexModifierImpl<VID> |
Copyright © 2017 Oracle Corp. All Rights Reserved.