Package | Description |
---|---|
oracle.pg.rdbms |
This package contains the APIs specific to the property graph support on Oracle Database.
|
oracle.pg.text |
This package contains the logic for handling text search and text indexing.
|
Modifier and Type | Class and Description |
---|---|
class |
OracleEdgeFilterIteratorImpl
This class implements the Iterator interface for filtered edges.
|
class |
OracleEdgeIteratorImpl
This class implements the Iterator interface for vertices.
|
class |
OracleVertexFilterIteratorImpl
This class implements the Iterator interface for filtering vertices based on a specified VertexFilterCallback.
|
class |
OracleVertexIteratorImpl
This class implements the Iterator interface for vertices.
|
Modifier and Type | Method and Description |
---|---|
CloseableIterator<T> |
OracleIndex.get(java.lang.Object query)
Gets an Iterable object with all the matching elements that have a particular key/value property within the index
|
CloseableIterator<T> |
OracleIndex.get(java.lang.String key, java.lang.Object value)
Gets an Iterable object with all the matching elements that have a particular key/value property within the index
|
CloseableIterator<T> |
OracleIndex.get(java.lang.String key, java.lang.Object value, boolean acceptWildcard)
Gets an Iterable object with all the matching elements that have a particular key/value property within the index
|
CloseableIterator<T> |
OracleAutoIndex.get(java.lang.String key, java.lang.Object value, boolean acceptWildcard)
Gets an Iterator object with all the matching elements that have a particular key/value property within the index
|
CloseableIterator<T> |
OracleIndex.get(java.lang.String key, java.lang.Object value, java.lang.Class dtValue, boolean acceptWildcard)
Gets an Iterable object with all the matching elements that have a particular key/value property within the index
|
CloseableIterator<T>[] |
OracleIndex.getPartitioned(java.lang.Object[] connections, java.lang.Object query, int startShardId)
Gets an array of
CloseableIterator objects that hold all the elements with an attribute matching the given K/V pair. |
CloseableIterator<T>[] |
OracleIndex.getPartitioned(java.lang.Object[] connections, java.lang.String key, java.lang.Object value, boolean acceptWildcard, int startShardId)
Gets an array of
CloseableIterator objects that hold all the elements with an attribute matching the given K/V pair. |
CloseableIterator<T>[] |
OracleIndex.getPartitioned(java.lang.Object[] connections, java.lang.String key, java.lang.Object value, java.lang.Class dtValue, boolean acceptWildcard, int startShardId)
Gets an array of
CloseableIterator objects that hold all the elements with an attribute matching the given K/V pair. |
CloseableIterator<T> |
OracleIndex.query(java.lang.String key, java.lang.Object value)
Query for all the elements satisfying the specified K/V property within the index
|
CloseableIterator<T> |
OracleIndex.query(java.lang.String key, java.lang.Object value, boolean useWildcards)
Query for all the elements satisfying the specified K/V property within the index
|