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.createKeyIndex(java.lang.String[] keys, java.lang.Class<T> elementClass, Parameter... parameters)
Creates an automatically maintained index for the given keys and element class.
|
default <T extends OracleElementBase> |
OracleIndexableGraph.createKeyIndex(java.lang.String key, java.lang.Class<T> elementClass, Parameter... parameters)
Creates an automatic indexing structure for indexing provided key for element class.
|
default <T extends OracleElementBase> |
OracleIndexableGraph.dropKeyIndex(java.lang.String[] keys, java.lang.Class<T> elementClass, Parameter... parameters)
Removes an automatic indexing structure associated with indexing provided key for element class.
|
Modifier and Type | Method and Description |
---|---|
Parameter[] |
OracleIndexParameters.defaultIndexParams()
Gets Oracle's default array of parameters defined for an index.
|
Parameter[] |
OracleIndexParameters.getParameters()
Gets the index parameters associated to this object.
|
Parameter[] |
OracleIndex.getParameters()
Gets the OracleIndexParameters associated to this index
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Parameter> |
OracleIndexParameters.defaultIndexParamsAsList()
Gets Oracle's default list of parameters defined for an index.
|
Modifier and Type | Method and Description |
---|---|
void |
OracleIndexParameters.addParameter(Parameter parameter)
Adds a new parameter to this OracleIndexParameters object
|
<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.
|
OracleAutoIndex<OracleEdgeBase> |
OracleIndexManager.getEdgeAutoIndexer(Parameter... indexParameters)
Deprecated.
|
OracleAutoIndex<OracleVertexBase> |
OracleIndexManager.getVertexAutoIndexer(Parameter... indexParameters)
Deprecated.
|
Constructor and Description |
---|
IndexParametersBase(Parameter[] indexParams, OraclePropertyGraphBase opg)
Creates a new IndexParametersBase object from the given array of parameters and the property graph associated.
|
OracleIndexParameters(Parameter[] parameters)
Creates a new OracleIndexParameters object from an initial set of parameters.
|
Constructor and Description |
---|
OracleIndexParameters(java.util.List<Parameter> parameters)
Creates a new OracleIndexParameters object from an initial set of parameters.
|