Uses of Interface
oracle.pgx.api.GraphChangeSet
-
Packages that use GraphChangeSet 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 GraphChangeSet in oracle.pgx.api
Subinterfaces of GraphChangeSet in oracle.pgx.api Modifier and Type Interface Description interfaceEdgeModifier<VID>interfaceVertexModifier<VID>Classes in oracle.pgx.api that implement GraphChangeSet Modifier and Type Class Description classGraphChangeSetImpl<VID>Methods in oracle.pgx.api that return GraphChangeSet Modifier and Type Method Description <ID extends java.lang.Comparable<ID>>
GraphChangeSet<ID>PgxGraph. createChangeSet()Creates a change set for updating the graph usingIdGenerationStrategy.AUTO_GENERATEDfor edge ID generation strategy Note: This is currently not supported for undirected graphs.<ID extends java.lang.Comparable<ID>>
GraphChangeSet<ID>PgxGraph. createChangeSet(IdGenerationStrategy vertexIdGenerationStrategy, IdGenerationStrategy edgeIdGenerationStrategy)Creates a change set for updating the graph.GraphChangeSet<VID>GraphChangeSet. removeEdge(long edgeId)Removes an edge from the graph.GraphChangeSet<VID>GraphChangeSet. removeEdge(java.lang.String edgeId)Removes an edge from the graph.GraphChangeSet<VID>GraphChangeSetImpl. removeEdge(long edgeId)GraphChangeSet<VID>GraphChangeSetImpl. removeEdge(java.lang.String 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>GraphChangeSet. resetEdge(java.lang.String edgeId)GraphChangeSet<VID>GraphChangeSetImpl. resetEdge(long edgeId)GraphChangeSet<VID>GraphChangeSetImpl. resetEdge(java.lang.String edgeId)GraphChangeSet<VID>GraphChangeSet. resetVertex(VertexBuilder<VID> vertex)GraphChangeSet<VID>GraphChangeSet. resetVertex(VID vertexId)GraphChangeSet<VID>GraphChangeSetImpl. resetVertex(VertexBuilder<VID> vertex)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 existsGraphChangeSet<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 existsGraphChangeSet<VID>GraphChangeSetImpl. setAddExistingVertexPolicy(OnAddExistingElement addExistingVertexPolicy)GraphChangeSet<VID>GraphChangeSet. setInvalidChangePolicy(OnInvalidChange invalidChangePolicy)Sets the policy on what to do when an invalid action is addedGraphChangeSet<VID>GraphChangeSetImpl. setInvalidChangePolicy(OnInvalidChange invalidChangePolicy)GraphChangeSet<VID>GraphChangeSet. setRequiredConversionPolicy(OnRequiredConversion requiredConversionPolicy)Sets the policy on what to do when an invalid type is encounteredGraphChangeSet<VID>GraphChangeSetImpl. setRequiredConversionPolicy(OnRequiredConversion requiredConversionPolicy)default GraphChangeSet<VID>GraphChangeSet. setRetainIds(boolean retainIds) -
Uses of GraphChangeSet in oracle.pgx.api.graphbuilder
Classes in oracle.pgx.api.graphbuilder that implement GraphChangeSet Modifier and Type Class Description classEdgeModifierImpl<VID>classVertexModifierImpl<VID>
-