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.text |
This package contains the logic for handling text search and text indexing.
|
Modifier and Type | Method and Description |
---|---|
<T extends OracleElementBase> |
OraclePropertyGraphBase.createIndex(java.lang.String indexName, java.lang.Class<T> indexClass, Parameter... indexParameters)
Generates an index with a particular name, for a particular class, and of a particular type.
|
<T extends OracleElementBase> |
OracleIndexableGraph.createIndex(java.lang.String indexName, java.lang.Class<T> indexClass, Parameter... indexParameters)
Generates an index with a particular name, for a particular class, and of a particular type.
|
default <T extends OracleElementBase> |
OracleIndexableGraph.getAutoIndex(java.lang.Class<T> indexClass)
Gets an automatic index from the graph by its name and index class.
|
default <T extends OracleElementBase> |
OracleIndexableGraph.getIndex(java.lang.String indexName, java.lang.Class<T> indexClass)
Gets a manual index from the graph by its name and index class.
|
Modifier and Type | Method and Description |
---|---|
default java.util.Iterator<OracleIndex<? extends OracleElementBase>> |
OracleIndexableGraph.getIndices()
Gets all the indices maintained by the graph.
|
Modifier and Type | Interface and Description |
---|---|
interface |
OracleAutoIndex<T extends OracleElementBase>
An interface that extends the functions defined in OracleIndex to provide manage an automatic index.
|
Modifier and Type | Method and Description |
---|---|
<T extends OracleElementBase> |
OracleIndexManager.createIndex(java.lang.String indexName, java.lang.Class<T> indexClass, OraclePropertyGraphBase pg, Parameter... indexParameters)
Generates an index with a particular name, for a particular class, and of a particular type.
|
<T extends OracleElementBase> |
OracleIndexManager.getEdgeIndex(java.lang.String indexName)
Gets the edge manual index associated to the specified index name
|
<T extends OracleElementBase> |
OracleIndexManager.getEdgeIndex(java.lang.String indexName, boolean refresh)
Deprecated.
|
<T extends OracleElementBase> |
OracleIndexManager.getVertexIndex(java.lang.String indexName)
Gets the manual vertex index associated to the specified index name
|
<T extends OracleElementBase> |
OracleIndexManager.getVertexIndex(java.lang.String indexName, boolean refresh)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<OracleIndex<? extends OracleElementBase>> |
OracleIndexManager.getIndices()
Gets all the manual indices managed by this index manager
|