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.nosql |
This package contains the logic specific to the property graph support on Oracle NoSQL Database.
|
oracle.pg.text |
This package contains the logic for handling text search and text indexing.
|
oracle.pg.text.lucene |
This package contains the logic for handling text search and text indexing using Apache Lucene.
|
oracle.pg.text.solr |
This package contains the logic for handling text search and text indexing using SolrCloud.
|
Modifier and Type | Method and Description |
---|---|
static void |
OraclePropertyGraphUtilsBase.exportFlatFiles(OraclePropertyGraphBase pg,
java.io.OutputStream osVertex,
java.io.OutputStream osEdge,
int dop,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtilsBase.exportFlatFiles(OraclePropertyGraphBase pg,
java.lang.String vertexFileName,
java.lang.String edgeFileName,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtilsBase.exportFlatFiles(OraclePropertyGraphBase pg,
java.lang.String vertexFileName,
java.lang.String edgeFileName,
int dop,
boolean append)
This function exports a given property graph into two flat files: one
for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtilsBase.exportGML(OraclePropertyGraphBase opg,
java.io.OutputStream os,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output
stream in GML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGML(OraclePropertyGraphBase opg,
java.lang.String gmlFileName,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified
file in GML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphML(OraclePropertyGraphBase opg,
java.io.OutputStream os,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output
stream in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphML(OraclePropertyGraphBase opg,
java.lang.String graphMLFileName,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified
file in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphMLTinkerpop3(OraclePropertyGraphBase opg,
java.io.OutputStream os,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output
stream in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphMLTinkerpop3(OraclePropertyGraphBase opg,
java.lang.String graphMLFileName,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified
file in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSON(OraclePropertyGraphBase opg,
java.io.OutputStream os,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output
stream in GraphSON format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSON(OraclePropertyGraphBase opg,
java.lang.String graphSonFileName,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified
file in GraphSON format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSONTinkerpop3(OraclePropertyGraphBase opg,
java.io.OutputStream os,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output
stream in GraphSON format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSONTinkerpop3(OraclePropertyGraphBase opg,
java.lang.String graphSonFileName,
java.io.PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified
file in GraphSON format.
|
static EdgeCache |
EdgeCache.getInstance(OraclePropertyGraphBase opg)
This method returns an instance of EdgeCache.
|
static VertexCache |
VertexCache.getInstance(OraclePropertyGraphBase opg)
This method returns an instance of VertexCache.
|
static void |
OraclePropertyGraphUtilsBase.importGML(OraclePropertyGraphBase opg,
java.io.InputStream is,
java.io.PrintStream psOut)
Imports all vertices/edges from the input stream in GML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGML(OraclePropertyGraphBase opg,
java.lang.String gmlFileName,
java.io.PrintStream psOut)
Imports all vertices/edges from the specified file in GML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphML(OraclePropertyGraphBase opg,
java.io.InputStream is,
java.io.PrintStream psOut)
Imports all vertices/edges from the input stream in GraphGML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphML(OraclePropertyGraphBase opg,
java.lang.String graphMLFileName,
java.io.PrintStream psOut)
Imports all vertices/edges from the specified file in GraphGML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphMLTinkerpop3(OraclePropertyGraphBase opg,
java.io.InputStream is,
java.io.PrintStream psOut)
Imports all vertices/edges from the input stream in GraphGML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphMLTinkerpop3(OraclePropertyGraphBase opg,
java.lang.String graphMLFileName,
java.io.PrintStream psOut)
Imports all vertices/edges from the specified file in GraphGML format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSON(OraclePropertyGraphBase opg,
java.io.InputStream is,
java.io.PrintStream psOut)
Imports all vertices/edges from the input stream in GraphSON format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSON(OraclePropertyGraphBase opg,
java.lang.String graphSonFileName,
java.io.PrintStream psOut)
Imports all vertices/edges from the specified file in GraphSON format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSONTinkerpop3(OraclePropertyGraphBase opg,
java.io.InputStream is,
java.io.PrintStream psOut)
Imports all vertices/edges from the input stream in GraphSON format into
the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSONTinkerpop3(OraclePropertyGraphBase opg,
java.lang.String graphSonFileName,
java.io.PrintStream psOut)
Imports all vertices/edges from the specified file in GraphSON format into
the specified property graph.
|
static void |
OracleDataLoaderUtils.loadKeyValue(OraclePropertyGraphBase opg,
OracleElementBase oe,
long lLine,
java.lang.String line,
long[] lErrors,
int fieldIdx,
java.lang.String[] saFields,
java.lang.String emptyKey,
DataLoaderListener dll)
This method load key values
|
static void |
OraclePropertyGraphUtilsBase.quietlyShutdown(OraclePropertyGraphBase opg)
Quietly shutdown a property graph.
|
void |
OracleElementBase.setPropertyGraph(OraclePropertyGraphBase graph)
Sets the property graph instance associated to this graph
|
Modifier and Type | Class and Description |
---|---|
class |
OraclePropertyGraph
This class implements the Blueprints Graph interface on top of a supported backend database.
|
Modifier and Type | Method and Description |
---|---|
void |
OracleEdge.setPropertyGraph(OraclePropertyGraphBase opg)
Sets the property graph instance associated to this element
|
void |
OracleElement.setPropertyGraph(OraclePropertyGraphBase opg)
Sets the property graph instance associated to this element
|
void |
OracleVertex.setPropertyGraph(OraclePropertyGraphBase opg)
Sets the property graph instance associated to this element
|
Modifier and Type | Method and Description |
---|---|
<T extends com.tinkerpop.blueprints.Element> |
OracleIndexManager.createIndex(java.lang.String indexName,
java.lang.Class<T> indexClass,
OraclePropertyGraphBase pg,
com.tinkerpop.blueprints.Parameter... indexParameters)
Generates an index with a particular name, for a particular class, and
of a particular type.
|
Constructor and Description |
---|
IndexParametersBase(com.tinkerpop.blueprints.Parameter[] indexParams,
OraclePropertyGraphBase opg)
Creates a new IndexParametersBase object from the given array of parameters
and the property graph associated.
|
OracleIndexManager(OraclePropertyGraphBase opg)
Creates a new OracleIndexManager object, handling external indexes associated
to the specified property graph.
|
Constructor and Description |
---|
LuceneAutoIndex(java.lang.String indexName,
java.lang.Class<T> indexClass,
OraclePropertyGraphBase graph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
LuceneEdgeAutoIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
LuceneEdgeIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
LuceneIndex(java.lang.String indexName,
java.lang.Class<T> indexClass,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter[] indexParameters,
boolean clear)
Deprecated.
|
LuceneParameters(com.tinkerpop.blueprints.Parameter[] indexParams,
OraclePropertyGraphBase opg)
Creates a new LuceneParameters object from the given array of parameters
and the property graph associated.
|
LuceneVertexAutoIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
LuceneVertexIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
Constructor and Description |
---|
SolrAutoIndex(java.lang.String indexName,
java.lang.Class<T> indexClass,
OraclePropertyGraphBase graph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
SolrEdgeAutoIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
SolrEdgeIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
SolrIndex(java.lang.String indexName,
java.lang.Class<T> indexClass,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter[] indexParameters,
boolean clear)
Deprecated.
|
SolrVertexAutoIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
SolrVertexIndex(java.lang.String indexName,
OraclePropertyGraphBase oraclePropertyGraph,
com.tinkerpop.blueprints.Parameter<java.lang.String,java.lang.Object>[] indexParameters,
boolean erase)
Deprecated.
|
Copyright © 2015, 2019, Oracle and/or its afflilates. All Rights Reserved.