Package | Description |
---|---|
oracle.pg.common |
This package contains the common logic that is shared by all the backend databases including Oracle Database, Oracle NoSQL Database, and Apache HBase.
|
oracle.pg.rdbms |
This package contains the APIs specific to the property graph support on Oracle Database.
|
Modifier and Type | Method and Description |
---|---|
static Direction |
Direction.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Direction[] |
Direction.values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraphBase.adjacentEdgesFromVertices(java.lang.Object[] ids, Direction direction, java.lang.String[] labels, int dop)
Return an iterator to the vertices in the graph identified by the specified requestedIds using the specified dop
|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraphBase.adjacentEdgesFromVertices(java.lang.Object[] ids, java.lang.String[] labels, Direction direction)
Return an iterator to the vertices in the graph identified by the specified requestedIds
|
abstract long |
OracleVertexBase.degree(Direction direction, java.lang.String... labels)
Return the vertices adjacent to the vertex according to the provided direction and edge labels.
|
abstract java.util.Iterator<OracleEdgeBase> |
OracleVertexBase.edges(Direction direction, OraclePropertyGraphBase.OptimizationFlag flag, java.lang.String... labels)
Return the edges incident to the vertex according to the given direction and edge labels.
|
java.util.Iterator<OracleEdgeBase> |
OracleVertexBase.edges(Direction direction, java.lang.String... labels)
Return the edges incident to the vertex according to the given direction and edge labels.
|
java.util.Iterator<OracleVertexBase> |
OracleEdgeBase.vertices(Direction direction)
Review the vertex (or vertices) associated with this edge as defined by the direction.
|
abstract java.util.Iterator<OracleVertexBase> |
OracleVertexBase.vertices(Direction direction, OraclePropertyGraphBase.OptimizationFlag flag, java.lang.String... labels)
Return the vertices adjacent to the vertex according to the provided direction and edge labels.
|
java.util.Iterator<OracleVertexBase> |
OracleVertexBase.vertices(Direction direction, java.lang.String... labels)
Return the vertices adjacent to the vertex according to the provided direction and edge labels.
|
Modifier and Type | Method and Description |
---|---|
long |
OracleVertex.degree(Direction direction, java.lang.String... labels)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase> |
OracleVertex.edges(Direction direction, OraclePropertyGraphBase.OptimizationFlag flag, java.lang.String... labels)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase> |
OracleVertex.vertices(Direction direction, OraclePropertyGraphBase.OptimizationFlag flag, java.lang.String... labels)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|