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 |
---|---|
FileGraphConfig |
PgxGraph.store(Format targetFormat, FileGraphStoringConfig storingConfig)
Blocking version of
PgxGraph.storeAsync(Format, FileGraphStoringConfig) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, FileGraphStoringConfig storingConfig, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, FileGraphStoringConfig, boolean) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, FileGraphStoringConfig storingConfig, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, FileGraphStoringConfig, Collection, Collection, boolean) . |
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) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetBasePath, int numPartitions)
Blocking version of
PgxGraph.storeAsync(Format, String, int) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetBasePath, int numPartitions, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, String, int, boolean) . |
FileGraphConfig |
PgxGraph.store(Format targetFormat, java.lang.String targetBasePath, int numPartitions, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Blocking version of
PgxGraph.storeAsync(Format, String, int, Collection, Collection, boolean) . |
Modifier and Type | Method and Description |
---|---|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, FileGraphStoringConfig storingConfig)
Stores this graph in a given file format in multiple partitions on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, FileGraphStoringConfig storingConfig, boolean overwrite)
Stores this graph in a given file format in multiple partitions on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, FileGraphStoringConfig storingConfig, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Stores this graph in a given file format in multiple partitions on a file system.
|
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.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetBasePath, int numPartitions)
Stores this graph in a given file format in multiple partitions on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetBasePath, int numPartitions, boolean overwrite)
Stores this graph in a given file format in multiple partitions on a file system.
|
PgxFuture<FileGraphConfig> |
PgxGraph.storeAsync(Format targetFormat, java.lang.String targetBasePath, int numPartitions, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Stores this graph in a given file format in multiple partitions on a file system.
|
Modifier and Type | Method and Description |
---|---|
FileGraphConfig |
FileGraphConfigFactory.fromProperties(java.util.Properties props) |
static FileGraphConfig |
FileGraphConfig.parse(java.io.InputStream is, boolean strict, java.lang.String parentPath)
Parses an input stream.
|
static FileGraphConfig |
FileGraphConfig.parse(java.util.Map<java.lang.String,java.lang.Object> raw, boolean strict, java.lang.String parentPath)
Parses a raw key/value mapping.
|
static FileGraphConfig |
FileGraphConfig.parse(java.util.Properties props, boolean strict)
Parses a properties file.
|
Modifier and Type | Method and Description |
---|---|
FileGraphConfigBuilder |
FileGraphConfigBuilder.copyFrom(FileGraphConfig graphConfig) |