Uses of Class
oracle.pgx.common.types.IdStrategy
-
Packages that use IdStrategy Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.frames This package contains classes and utilities to build and manipulate PGX Frames.oracle.pgx.common.types This package contains enums and helper classes identifying common PGX types.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of IdStrategy in oracle.pgx.api
Methods in oracle.pgx.api that return IdStrategy Modifier and Type Method Description IdStrategyGraphMetaData. getEdgeIdStrategy()Gets the ID strategy used for the edges of this graph.IdStrategyPgxGraph. getEdgeIdStrategy()Gets the ID strategy used for the edges of this graph.IdStrategyGraphMetaData. getVertexIdStrategy()Gets the ID strategy used for the vertices of this graph.IdStrategyPgxGraph. getVertexIdStrategy()Gets the ID strategy used for the vertices of this graph.Methods in oracle.pgx.api with parameters of type IdStrategy Modifier and Type Method Description voidGraphMetaData. setEdgeIdStrategy(IdStrategy idStrategy)voidGraphMetaData. setVertexIdStrategy(IdStrategy idStrategy) -
Uses of IdStrategy in oracle.pgx.api.frames
Methods in oracle.pgx.api.frames with parameters of type IdStrategy Modifier and Type Method Description voidPgxGraphFromFramesCreator. edgeIdStrategy(IdStrategy strategy)Set strategy for edge idsvoidPgxGraphFromFramesCreator. vertexIdStrategy(IdStrategy strategy)Set strategy for vertex ids -
Uses of IdStrategy in oracle.pgx.common.types
Methods in oracle.pgx.common.types that return IdStrategy Modifier and Type Method Description static IdStrategyIdStrategy. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IdStrategy[]IdStrategy. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of IdStrategy in oracle.pgx.config
Methods in oracle.pgx.config that return IdStrategy Modifier and Type Method Description IdStrategyFileGraphConfig. getEdgeIdStrategy()Indicates what ID strategy should be used for the edges of this graph.IdStrategyPartitionedGraphConfig. getEdgeIdStrategy()Indicates what ID strategy should be used for the edges of this graph.IdStrategyRdfGraphConfig. getEdgeIdStrategy()Indicates what ID strategy should be used for the edges of this graph.IdStrategyTwoTablesRdbmsGraphConfig. getEdgeIdStrategy()Indicates what ID strategy should be used for the edges of this graph.IdStrategyTwoTablesTextGraphConfig. getEdgeIdStrategy()Indicates what ID strategy should be used for the edges of this graph.IdStrategyAbstractPartitionedGraphConfig. getValidatedEdgeIdStrategy()Validates and return the ID strategy used for edges (checking if the strategy is compatible with the rest of the graph configuration)IdStrategyGraphConfig. getValidatedEdgeIdStrategy()Validates and return the ID strategy used for edges (checking if the strategy is compatible with the rest of the graph configuration)IdStrategyAbstractPartitionedGraphConfig. getValidatedVertexIdStrategy()Validates and return the ID strategy used for vertices (checking if the strategy is compatible with the rest of the graph configuration)IdStrategyGraphConfig. getValidatedVertexIdStrategy()Validates and return the ID strategy used for vertices (checking if the strategy is compatible with the rest of the graph configuration)IdStrategyFileGraphConfig. getVertexIdStrategy()Indicates what ID strategy should be used for the vertices of this graph.IdStrategyPartitionedGraphConfig. getVertexIdStrategy()Indicates what ID strategy should be used for the vertices of this graph.IdStrategyRdfGraphConfig. getVertexIdStrategy()Indicates what ID strategy should be used for the vertices of this graph.IdStrategyTwoTablesRdbmsGraphConfig. getVertexIdStrategy()Indicates what ID strategy should be used for the vertices of this graph.IdStrategyTwoTablesTextGraphConfig. getVertexIdStrategy()Indicates what ID strategy should be used for the vertices of this graph.Methods in oracle.pgx.config with parameters of type IdStrategy Modifier and Type Method Description TAbstractGraphConfigBuilder. setEdgeIdStrategy(IdStrategy idStrategy)Sets the ID strategy used for the edges of this graphTAbstractGraphConfigBuilder. setVertexIdStrategy(IdStrategy idStrategy)Sets the ID strategy used for the vertices of this graph
-