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.index.oratext |
This package contains the APIs specific to the text indexing and text search using Oracle Text for property graph support on Oracle Database.
|
oracle.pg.text |
This package contains the logic for handling text search and text indexing.
|
Modifier and Type | Method and Description |
---|---|
<T extends org.apache.tinkerpop.gremlin.structure.Element> |
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 org.apache.tinkerpop.gremlin.structure.Element> |
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 org.apache.tinkerpop.gremlin.structure.Element> |
OracleIndexableGraph.getAutoIndex(java.lang.Class<T> indexClass)
Gets an automatic index from the graph by its name and index class.
|
default <T extends org.apache.tinkerpop.gremlin.structure.Element> |
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 org.apache.tinkerpop.gremlin.structure.Element>> |
OracleIndexableGraph.getIndices()
Gets all the indices maintained by the graph.
|
Modifier and Type | Class and Description |
---|---|
class |
OracleTextAutoIndex<T extends org.apache.tinkerpop.gremlin.structure.Element>
This class implements the OracleAutoIndex interface to handle text search and text indexing using Oracle Text.
|
class |
RDBMSOracleTextEdgeAutoIndex
This class extends the functions defined in OracleTextAutoIndex to handle an automatic index on edges using Oracle Text.
|
class |
RDBMSOracleTextVertexAutoIndex
This class extends the functions defined in OracleTextAutoIndex to handle an automatic index on vertices using Oracle Text.
|
Modifier and Type | Interface and Description |
---|---|
interface |
OracleAutoIndex<T extends org.apache.tinkerpop.gremlin.structure.Element>
An interface that extends the functions defined in OracleIndex to provide manage an automatic index.
|
Modifier and Type | Method and Description |
---|---|
<T extends org.apache.tinkerpop.gremlin.structure.Element> |
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 org.apache.tinkerpop.gremlin.structure.Element> |
OracleIndexManager.getEdgeIndex(java.lang.String indexName)
Gets the edge manual index associated to the specified index name
|
<T extends org.apache.tinkerpop.gremlin.structure.Element> |
OracleIndexManager.getEdgeIndex(java.lang.String indexName, boolean refresh)
Deprecated.
|
<T extends org.apache.tinkerpop.gremlin.structure.Element> |
OracleIndexManager.getVertexIndex(java.lang.String indexName)
Gets the manual vertex index associated to the specified index name
|
<T extends org.apache.tinkerpop.gremlin.structure.Element> |
OracleIndexManager.getVertexIndex(java.lang.String indexName, boolean refresh)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<OracleIndex<? extends org.apache.tinkerpop.gremlin.structure.Element>> |
OracleIndexManager.getIndices()
Gets all the manual indices managed by this index manager
|
Copyright © 2010, 2020 Oracle and/or its affiliates. All Rights Reserved.