Package | Description |
---|---|
oracle.pg.common |
This package contains the common logic that is shared by all the backend databases including Oracle NoSQL Database and Apache HBase.
|
oracle.pg.hbase |
This package contains the logic specific to the property graph support on Apache HBase.
|
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, OutputStream osVertex, 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, String vertexFileName, 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, String vertexFileName, 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, OutputStream os, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output stream in GML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGML(OraclePropertyGraphBase opg, String gmlFileName, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified file in GML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphML(OraclePropertyGraphBase opg, OutputStream os, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output stream in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphML(OraclePropertyGraphBase opg, String graphMLFileName, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified file in GraphGML format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSON(OraclePropertyGraphBase opg, OutputStream os, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the output stream in GraphSON format.
|
static void |
OraclePropertyGraphUtilsBase.exportGraphSON(OraclePropertyGraphBase opg, String graphSonFileName, PrintStream psOut)
Exports all vertices/edges from the specified property graph into the specified file in GraphSON format.
|
static void |
OraclePropertyGraphUtilsBase.importGML(OraclePropertyGraphBase opg, InputStream is, PrintStream psOut)
Imports all vertices/edges from the input stream in GML format into the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGML(OraclePropertyGraphBase opg, String gmlFileName, PrintStream psOut)
Imports all vertices/edges from the specified file in GML format into the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphML(OraclePropertyGraphBase opg, InputStream is, PrintStream psOut)
Imports all vertices/edges from the input stream in GraphGML format into the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphML(OraclePropertyGraphBase opg, String graphMLFileName, PrintStream psOut)
Imports all vertices/edges from the specified file in GraphGML format into the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSON(OraclePropertyGraphBase opg, InputStream is, PrintStream psOut)
Imports all vertices/edges from the input stream in GraphSON format into the specified property graph.
|
static void |
OraclePropertyGraphUtilsBase.importGraphSON(OraclePropertyGraphBase opg, String graphSonFileName, 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, String line, long[] lErrors, int fieldIdx, String[] saFields, 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 an Apache HBase backend database.
|
Modifier and Type | Method and Description |
---|---|
void |
OracleEdge.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(String indexName, 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(String indexName, Class<T> indexClass, OraclePropertyGraphBase graph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
LuceneEdgeAutoIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
LuceneEdgeIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
LuceneIndex(String indexName, 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(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
LuceneVertexIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Constructor and Description |
---|
SolrAutoIndex(String indexName, Class<T> indexClass, OraclePropertyGraphBase graph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
SolrEdgeAutoIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
SolrEdgeIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
SolrIndex(String indexName, Class<T> indexClass, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter[] indexParameters, boolean clear)
Deprecated.
|
SolrVertexAutoIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
SolrVertexIndex(String indexName, OraclePropertyGraphBase oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Copyright © 2017 Oracle and/or its affiliates. All Rights Reserved.