Uses of Class
oracle.pgx.config.IdGenerationStrategy
-
Packages that use IdGenerationStrategy Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of IdGenerationStrategy in oracle.pgx.api
Methods in oracle.pgx.api with parameters of type IdGenerationStrategy Modifier and Type Method Description <ID extends java.lang.Comparable<ID>>
GraphChangeSet<ID>PgxGraph. createChangeSet(IdGenerationStrategy vertexIdGenerationStrategy, IdGenerationStrategy edgeIdGenerationStrategy)
Creates a change set for updating the graph.<ID extends java.lang.Comparable<ID>>
GraphBuilder<ID>PgxSession. createGraphBuilder(IdType idType, IdGenerationStrategy vertexIdGenerationStrategy, IdGenerationStrategy edgeIdGenerationStrategy)
Creates a graph builder with the given vertex ID type and Ids ModeGraphBuilder<java.lang.Integer>
PgxSession. createGraphBuilder(IdGenerationStrategy vertexIdGenerationStrategy, IdGenerationStrategy edgeIdGenerationStrategy)
Creates a graph builder with integer vertex IDs and Ids Mode -
Uses of IdGenerationStrategy in oracle.pgx.config
Methods in oracle.pgx.config that return IdGenerationStrategy Modifier and Type Method Description IdGenerationStrategy
GraphBuilderConfig. getEdgeIdGenerationStrategy()
ifAUTO_GENERATED
edges IDs are auto generated.IdGenerationStrategy
GraphBuilderConfig. getVertexIdGenerationStrategy()
ifAUTO_GENERATED
vertices IDs are auto generated.static IdGenerationStrategy
IdGenerationStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdGenerationStrategy[]
IdGenerationStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-