Uses of Class
oracle.pgx.config.FileGraphConfig
-
Packages that use FileGraphConfig Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of FileGraphConfig in oracle.pgx.api
Methods in oracle.pgx.api that return FileGraphConfig Modifier and Type Method Description FileGraphConfig
PgxGraph. store(Format targetFormat, java.lang.String targetPath)
Blocking version ofPgxGraph.storeAsync(Format, String)
.FileGraphConfig
PgxGraph. store(Format targetFormat, java.lang.String targetPath, boolean overwrite)
Blocking version ofPgxGraph.storeAsync(Format, String, boolean)
.FileGraphConfig
PgxGraph. store(Format targetFormat, java.lang.String targetBasePath, int numPartitions)
Blocking version ofPgxGraph.storeAsync(Format, String, int)
.FileGraphConfig
PgxGraph. store(Format targetFormat, java.lang.String targetBasePath, int numPartitions, boolean overwrite)
Blocking version ofPgxGraph.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 ofPgxGraph.storeAsync(Format, String, int, Collection, Collection, boolean)
.FileGraphConfig
PgxGraph. store(Format targetFormat, java.lang.String targetPath, java.util.Collection<VertexProperty<?,?>> vertexProps, java.util.Collection<EdgeProperty<?>> edgeProps, boolean overwrite)
Blocking version ofPgxGraph.storeAsync(Format, String, Collection, Collection, boolean)
.FileGraphConfig
PgxGraph. store(Format targetFormat, FileGraphStoringConfig storingConfig)
Blocking version ofPgxGraph.storeAsync(Format, FileGraphStoringConfig)
.FileGraphConfig
PgxGraph. store(Format targetFormat, FileGraphStoringConfig storingConfig, boolean overwrite)
Blocking version ofPgxGraph.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 ofPgxGraph.storeAsync(Format, FileGraphStoringConfig, Collection, Collection, boolean)
.Methods in oracle.pgx.api that return types with arguments of type FileGraphConfig Modifier and Type Method Description 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 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.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, 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. -
Uses of FileGraphConfig in oracle.pgx.config
Methods in oracle.pgx.config that return FileGraphConfig Modifier and Type Method 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.Methods in oracle.pgx.config with parameters of type FileGraphConfig Modifier and Type Method Description FileGraphConfigBuilder
FileGraphConfigBuilder. copyFrom(FileGraphConfig graphConfig)
-