| 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 |
|---|---|
VertexFilterCallback |
OraclePropertyGraphBase.getVertexFilterCallback()
Get the default VertexFilterCallback associated to this property graph
|
| Modifier and Type | Method and Description |
|---|---|
void |
OraclePropertyGraphBase.setVertexFilterCallback(VertexFilterCallback vfc)
Set the default VertexFilterCallback associated to this property graph
|
java.util.Iterator<OracleVertexBase> |
OraclePropertyGraphBase.verticesByPropertyKey(java.lang.String[] keys,
VertexFilterCallback vfc)
Return an
Iterator to all the vertices in the graph that have any of the specified keys and
satisfy the specified vertex filter callback. |
abstract java.util.Iterator<OracleVertexBase> |
OraclePropertyGraphBase.verticesByPropertyKey(java.lang.String[] keys,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Return an
Iterator to all the vertices in the graph that have any of the specified keys and
satisfy the specified vertex filter callback. |
| Modifier and Type | Method and Description |
|---|---|
java.util.Iterator<OracleVertexBase> |
OraclePropertyGraph.verticesByPropertyKey(java.lang.String[] propertyNames,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase> |
OraclePropertyGraph.verticesBySCN(java.lang.Long longEndSCN,
java.lang.String[] propertyNames,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase> |
OraclePropertyGraph.verticesFromResultSet(java.sql.ResultSet rs,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase>[] |
OraclePropertyGraph.verticesPartitioned(java.sql.Connection[] connections,
boolean bSkipStoreToCache,
int startPartitionID,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase>[] |
OraclePropertyGraph.verticesPartitioned(java.sql.Connection[] connArray,
java.lang.Long longEndSCN,
boolean bSkipStoreToCache,
int iStartPartitionID,
java.lang.String[] propertyNames,
VertexFilterCallback vfc)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase>[] |
OraclePropertyGraph.verticesPartitioned(java.sql.Connection[] connArray,
java.lang.Long longEndSCN,
boolean bSkipStoreToCache,
int iStartPartitionID,
java.lang.String[] propertyNames,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleVertexBase>[] |
OraclePropertyGraph.verticesPartitioned(java.sql.ResultSet[] rsArray,
boolean bSkipStoreToCache,
VertexFilterCallback vfc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|