Package | Description |
---|---|
oracle.pgx.api.graphalteration |
This package contains the APIs for the alterGraph mutation.
|
Modifier and Type | Interface and Description |
---|---|
interface |
GraphAlterationEmptyEdgeProviderBuilder
Builder to describe a new empty edge provider to add in a graph as part of a graph alteration.
|
interface |
GraphAlterationEmptyVertexProviderBuilder
Builder to describe a new empty vertex provider to add in a graph as part of a graph alteration.
|
Modifier and Type | Method and Description |
---|---|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperties(GraphPropertyConfig[] configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperties(java.util.List<GraphPropertyConfig> configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperty(GraphPropertyConfig config)
Adds a property from the property configuration
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperty(java.lang.String name, PropertyType type)
Adds a property of the given name and type to the provider.
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperty(java.lang.String name, PropertyType type, int dimension)
Adds a property of the given name, type and dimension to the provider.
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.createKeyMapping(boolean create)
Sets whether the provider should have a key mapping Should be false when the ID strategy is UNSTABLE_GENERATED_IDS, true when the ID strategy is KEYS_AS_IDS, and can be true or false if the ID strategy is PARTITIONED_IDS.
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.setKeyColumn(java.lang.Object column)
Sets the name or index (1-based index) of the key property for the provider.
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.setKeyType(IdType type)
Sets the type of the keys in the provider.
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.setLabel(java.lang.String label)
Associates a different provider label to the empty provider than the name of the provider
|