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.
|
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 file at the given path.
|
oracle.pgx.config.SingleFileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetPath)
Blocking version of
PgxGraph.storeAsync(Format, String) . |
oracle.pgx.config.SingleFileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetPath, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, String, boolean) . |
oracle.pgx.config.SingleFileGraphConfig |
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<oracle.pgx.config.SingleFileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetPath)
Stores this graph in a given file format on a file system.
|
PgxFuture<oracle.pgx.config.SingleFileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetPath, boolean overwrite)
Stores this graph in a given file format on a file system.
|
PgxFuture<oracle.pgx.config.SingleFileGraphConfig> |
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 |
---|---|
abstract Format |
GraphConfig.getFormat()
Get the format of this graph configuration
|
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 MultipleFileGraphConfigBuilder |
MultipleFileGraphConfigBuilder.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 SingleFileGraphConfigBuilder |
SingleFileGraphConfigBuilder.forFormat(Format format)
Creates a new single file graph configuration builder for a given file format.
|
static MultipleFileGraphConfigBuilder |
GraphConfigBuilder.forMultipleFileFormat(Format format)
returns a PGX graph config builder to create multiple file-based graph configs programmatically via Java methods.
|
static SingleFileGraphConfigBuilder |
GraphConfigBuilder.forSingleFileFormat(Format format)
returns a PGX graph config builder to create single file-based graph configs programmatically via Java methods.
|
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 is a multiple file-based format
|
static boolean |
GraphConfig.isSingleFileFormat(Format format)
Check if a format is a single file-based format
|
RdfGraphConfigBuilder |
RdfGraphConfigBuilder.setFormat(Format format) |
MultipleTablesConfigBuilder |
MultipleTablesConfigBuilder.setFormat(Format format) |
T |
AbstractFileGraphConfigBuilder.setFormat(Format format)
Sets the file format.
|
Copyright © 2016 Oracle Corp. All Rights Reserved.