Uses of Class
oracle.pgx.config.Format
-
Packages that use Format 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 Format in oracle.pgx.api
Methods in oracle.pgx.api with parameters of type Format Modifier and Type Method Description FileGraphConfigPgxGraph. store(Format targetFormat, java.lang.String targetPath)Blocking version ofPgxGraph.storeAsync(Format, String).FileGraphConfigPgxGraph. store(Format targetFormat, java.lang.String targetPath, boolean overwrite)Blocking version ofPgxGraph.storeAsync(Format, String, boolean).FileGraphConfigPgxGraph. store(Format targetFormat, java.lang.String targetBasePath, int numPartitions)Blocking version ofPgxGraph.storeAsync(Format, String, int).FileGraphConfigPgxGraph. store(Format targetFormat, java.lang.String targetBasePath, int numPartitions, boolean overwrite)Blocking version ofPgxGraph.storeAsync(Format, String, int, boolean).FileGraphConfigPgxGraph. 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).FileGraphConfigPgxGraph. 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).FileGraphConfigPgxGraph. store(Format targetFormat, FileGraphStoringConfig storingConfig)Blocking version ofPgxGraph.storeAsync(Format, FileGraphStoringConfig).FileGraphConfigPgxGraph. store(Format targetFormat, FileGraphStoringConfig storingConfig, boolean overwrite)Blocking version ofPgxGraph.storeAsync(Format, FileGraphStoringConfig, boolean).FileGraphConfigPgxGraph. 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).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 Format in oracle.pgx.config
Methods in oracle.pgx.config that return Format Modifier and Type Method Description FormatAbstractPartitionedGraphConfig. getFormat()FormatFileGraphConfig. getFormat()graph formatFormatRdfGraphConfig. getFormat()graph formatFormatTwoTablesRdbmsGraphConfig. getFormat()graph formatFormatTwoTablesTextGraphConfig. getFormat()graph formatstatic FormatFormat. parseFormat(java.lang.String input)Parses a format given as stringstatic FormatFormat. 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.Methods in oracle.pgx.config with parameters of type Format Modifier and Type Method Description static FileGraphConfigBuilderGraphConfigBuilder. forFileFormat(Format format)returns a PGX graph config builder to create file-based graph configs programmatically via Java methods.static FileGraphConfigBuilderFileGraphConfigBuilder. forFormat(Format format)Creates a new file graph configuration builder for a given file format.static RdfGraphConfigBuilderRdfGraphConfigBuilder. forFormat(Format format)static booleanGraphConfig. hasVerticesAndEdgesSeparatedFileFormat(Format format)Check if a format has vertices and edges separated in different filesstatic booleanGraphConfig. isFileFormat(Format format)Check if a format is a file-based formatstatic booleanGraphConfig. isMultipleFileFormat(Format format)Check if a format has vertices and edges separated in different filesstatic booleanGraphConfig. isSingleFileFormat(Format format)Check if a format has vertices and edges combined in same fileTAbstractFileGraphConfigBuilder. setFormat(Format format)Sets the file format.RdfGraphConfigBuilderRdfGraphConfigBuilder. setFormat(Format format)static booleanGraphConfig. supportsEdgeLabel(Format format)Check if a format supports having an edge label or notstatic booleanGraphConfig. supportsPropertyColumn(Format format)Check if a format support having a column indication for propertiesstatic booleanGraphConfig. supportsVectorProperties(Format format)Check if a format support having vector properties or notstatic booleanGraphConfig. supportsVertexLabels(Format format)Check if a format support having an vertex labels or not
-