Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
oracle.pgx.config |
This package contains all configuration-related classes of PGX.
|
Modifier and Type | Method and Description |
---|---|
GraphConfig |
PgxSession.describeGraphFile(java.lang.String path, Format format)
Blocking version of
PgxSession.describeGraphFileAsync(String, Format) . |
PgxFuture<GraphConfig> |
PgxSession.describeGraphFileAsync(java.lang.String path, Format format)
Describes the graph contained in the file at the given path.
|
GraphConfig |
PgxSession.describeGraphFiles(java.util.List<java.lang.String> filePaths, Format format)
Blocking version of
PgxSession.describeGraphFilesAsync(List, Format) . |
PgxGraph |
PgxSession.readGraphFile(java.lang.String path, Format format)
Blocking version of
PgxSession.readGraphFileAsync(String, Format) . |
PgxGraph |
PgxSession.readGraphFile(java.lang.String path, Format format, java.lang.String newGraphName)
Blocking version of
PgxSession.readGraphFileAsync(String, Format, String) . |
PgxFuture<PgxGraph> |
PgxSession.readGraphFileAsync(java.lang.String path, Format format)
Loads the graph contained in the file at the given path.
|
PgxFuture<PgxGraph> |
PgxSession.readGraphFileAsync(java.lang.String path, Format format, java.lang.String newGraphName)
Loads the graph contained in the files at the given path.
|
PgxFuture<PgxGraph> |
PgxSession.readGraphFilesAsync(java.util.List<java.lang.String> filePaths, Format format, java.lang.String newGraphName)
Loads the graph contained in the files at the given paths.
|
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetPath)
Blocking version of
PgxGraph.storeAsync(Format, String) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetPath, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, String, boolean) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetPath, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, String, Collection, Collection, boolean) . |
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetPath)
Stores this graph in a given file format on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetPath, boolean overwrite)
Stores this graph in a given file format on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetPath, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Stores this graph in a given file format on a file system.
|
Modifier and Type | Method and Description |
---|---|
Format |
PgRdbmsGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
MultipleTablesGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
PgNosqlGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
TwoTablesSparkGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
RdfGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
PgHbaseGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
TwoTablesRdbmsGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
abstract Format |
GraphConfig.getFormat()
Get the format of this graph configuration
|
Format |
TwoTablesTextGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
Format |
FileGraphConfig.getFormat()
graph format (Note: bin is deprecated, use pgb instead)
|
static Format |
Format.parseFormat(java.lang.String input)
Parses a format given as string
|
static Format |
Format.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
Format.values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static FileGraphConfigBuilder |
GraphConfigBuilder.forFileFormat(Format format)
returns a PGX graph config builder to create file-based graph configs programmatically via Java methods.
|
static FileGraphConfigBuilder |
FileGraphConfigBuilder.forFormat(Format format)
Creates a new file graph configuration builder for a given file format.
|
static RdfGraphConfigBuilder |
RdfGraphConfigBuilder.forFormat(Format format) |
static MultipleTablesConfigBuilder |
MultipleTablesConfigBuilder.forFormat(Format format) |
static FileGraphConfigBuilder |
GraphConfigBuilder.forMultipleFileFormat(Format format)
Deprecated.
As of release 2.3, replaced by
GraphConfigBuilder.forFileFormat(Format) |
static FileGraphConfigBuilder |
GraphConfigBuilder.forSingleFileFormat(Format format)
Deprecated.
As of release 2.3, replaced by
GraphConfigBuilder.forFileFormat(Format) |
static boolean |
GraphConfig.hasVerticesAndEdgesSeparatedFileFormat(Format format)
Check if a format has vertices and edges separated in different files
|
static boolean |
GraphConfig.isFileFormat(Format format)
Check if a format is a file-based format
|
static boolean |
GraphConfig.isMultipleFileFormat(Format format)
Check if a format has vertices and edges separated in different files
|
static boolean |
GraphConfig.isSingleFileFormat(Format format)
Check if a format has vertices and edges combined in same file
|
RdfGraphConfigBuilder |
RdfGraphConfigBuilder.setFormat(Format format) |
T |
AbstractFileGraphConfigBuilder.setFormat(Format format)
Sets the file format.
|
MultipleTablesConfigBuilder |
MultipleTablesConfigBuilder.setFormat(Format format) |
static boolean |
GraphConfig.supportsEdgeLabel(Format format)
Check if a format supports having an edge label or not
|
static boolean |
GraphConfig.supportsVertexLabels(Format format)
Check if a format support having an vertex labels or not
|
Copyright © 2017 Oracle Corp. All Rights Reserved.