Uses of Interface
oracle.pgx.api.graphalteration.GraphAlterationBuilder
-
Packages that use GraphAlterationBuilder Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.graphalteration This package contains the APIs for the alterGraph mutation. -
-
Uses of GraphAlterationBuilder in oracle.pgx.api
Methods in oracle.pgx.api that return GraphAlterationBuilder Modifier and Type Method Description GraphAlterationBuilderPgxGraph. alterGraph()Create a graph alteration builder to define the graph schema alterations to perform on the graph -
Uses of GraphAlterationBuilder in oracle.pgx.api.graphalteration
Subinterfaces of GraphAlterationBuilder in oracle.pgx.api.graphalteration Modifier and Type Interface Description interfaceGraphAlterationEmptyEdgeProviderBuilderBuilder to describe a new empty edge provider to add in a graph as part of a graph alteration.interfaceGraphAlterationEmptyProviderBuilderBuilder to describe a new empty provider to add in a graph as part of a graph alteration.interfaceGraphAlterationEmptyVertexProviderBuilderBuilder to describe a new empty vertex provider to add in a graph as part of a graph alteration.Methods in oracle.pgx.api.graphalteration that return GraphAlterationBuilder Modifier and Type Method Description GraphAlterationBuilderGraphAlterationBuilder. addEdgeProvider(java.lang.String pathToEdgeProviderConfig)Adds an edge provider for which the configuration is in a file at the specified pathGraphAlterationBuilderGraphAlterationBuilder. addEdgeProvider(EntityProviderConfig edgeProviderConfig)Adds an edge provider specified by the provided configurationGraphAlterationBuilderGraphAlterationBuilder. addVertexProvider(java.lang.String pathToVertexProviderConfig)Adds a vertex provider for which the configuration is in a file at the specified pathGraphAlterationBuilderGraphAlterationBuilder. addVertexProvider(EntityProviderConfig vertexProviderConfig)Adds a vertex provider specified by the provided configurationGraphAlterationBuilderGraphAlterationBuilder. cascadeEdgeProviderRemovals(boolean cascadeEdgeProviderRemovals)Specifies if the edge providers associated to a vertex provider (the vertex provider is either the source or destination provider for that edge provider) being removed should be automatically removed too or not.GraphAlterationBuilderGraphAlterationBuilder. removeEdgeProvider(java.lang.String edgeProviderName)Removes the edge provider that has the given nameGraphAlterationBuilderGraphAlterationBuilder. removeVertexProvider(java.lang.String vertexProviderName)Removes the vertex provider that has the given name.
-