| 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 |
|---|---|
EdgeFilterCallback |
OraclePropertyGraphBase.getEdgeFilterCallback()
Get the default EdgeFilterCallback associated to this property graph
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraphBase.edgesByPropertyKey(java.lang.String[] keys,
EdgeFilterCallback efc)
Return an
Iterator to all the edges in the graph that have any of the specified keys and
satisfy the specified edge filter callback. |
abstract java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraphBase.edgesByPropertyKey(java.lang.String[] keys,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Return an
Iterator to all the edges in the graph that have any of the specified keys and
satisfy the specified edge filter callback. |
void |
OraclePropertyGraphBase.setEdgeFilterCallback(EdgeFilterCallback efc)
Set the default EdgeFilterCallback associated to this property graph
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraph.edgesByPropertyKey(java.lang.String[] propertyNames,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraph.edgesBySCN(boolean bOrderBySVID,
java.lang.Long longEndSCN,
java.lang.String[] propertyNames,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase> |
OraclePropertyGraph.edgesFromResultSet(java.sql.ResultSet rs,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase>[] |
OraclePropertyGraph.edgesPartitioned(java.sql.Connection[] connArray,
boolean bSkipStoreToCache,
int startPartitionID,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase>[] |
OraclePropertyGraph.edgesPartitioned(java.sql.Connection[] connArray,
boolean bOrderBySVID,
java.lang.Long longEndSCN,
boolean bSkipStoreToCache,
int iStartPartitionID,
java.lang.String[] propertyNames,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|
java.util.Iterator<OracleEdgeBase>[] |
OraclePropertyGraph.edgesPartitioned(java.sql.ResultSet[] rsArray,
boolean bSkipStoreToCache,
EdgeFilterCallback efc,
OraclePropertyGraphBase.OptimizationFlag flag)
Deprecated.
since 19c. Use PGQL on RDBMS APIs instead.
|