| Package | Description |
|---|---|
| oracle.pgx.api |
This package contains the main Java APIs.
|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
IdStrategy |
GraphMetaData.getEdgeIdStrategy()
Gets the ID strategy used for the edges of this graph.
|
IdStrategy |
PgxGraph.getEdgeIdStrategy()
Gets the ID strategy used for the edges of this graph.
|
IdStrategy |
GraphMetaData.getVertexIdStrategy()
Gets the ID strategy used for the vertices of this graph.
|
IdStrategy |
PgxGraph.getVertexIdStrategy()
Gets the ID strategy used for the vertices of this graph.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GraphMetaData.setEdgeIdStrategy(IdStrategy idStrategy) |
void |
GraphMetaData.setVertexIdStrategy(IdStrategy idStrategy) |
| Modifier and Type | Method and Description |
|---|---|
static IdStrategy |
IdStrategy.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.
|
| Modifier and Type | Method and Description |
|---|---|
IdStrategy |
FileGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
PartitionedGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
PgHbaseGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
PgNosqlGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
PgRdbmsGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
RdfGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
TwoTablesRdbmsGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
TwoTablesTextGraphConfig.getEdgeIdStrategy()
Indicates what ID strategy should be used for the edges of this graph.
|
IdStrategy |
AbstractPartitionedGraphConfig.getValidatedEdgeIdStrategy()
Validates and return the ID strategy used for edges (checking if the strategy is compatible with the rest of
the graph configuration)
|
IdStrategy |
GraphConfig.getValidatedEdgeIdStrategy()
Validates and return the ID strategy used for edges (checking if the strategy is compatible with the rest of
the graph configuration)
|
IdStrategy |
AbstractPartitionedGraphConfig.getValidatedVertexIdStrategy()
Validates and return the ID strategy used for vertices (checking if the strategy is compatible with the rest of
the graph configuration)
|
IdStrategy |
GraphConfig.getValidatedVertexIdStrategy()
Validates and return the ID strategy used for vertices (checking if the strategy is compatible with the rest of
the graph configuration)
|
IdStrategy |
FileGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
PartitionedGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
PgHbaseGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
PgNosqlGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
PgRdbmsGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
RdfGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
TwoTablesRdbmsGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
IdStrategy |
TwoTablesTextGraphConfig.getVertexIdStrategy()
Indicates what ID strategy should be used for the vertices of this graph.
|
| Modifier and Type | Method and Description |
|---|---|
T |
AbstractGraphConfigBuilder.setEdgeIdStrategy(IdStrategy idStrategy)
Sets the ID strategy used for the edges of this graph
|
T |
AbstractGraphConfigBuilder.setVertexIdStrategy(IdStrategy idStrategy)
Sets the ID strategy used for the vertices of this graph
|