Package oracle.pgx.config
Class GraphConfigFactory
- java.lang.Object
-
- oracle.pgx.config.AbstractConfigFactory<T>
-
- oracle.pgx.config.AbstractGraphConfigFactory<GraphConfig>
-
- oracle.pgx.config.AnyFormatGraphConfigFactory
-
- oracle.pgx.config.GraphConfigFactory
-
public class GraphConfigFactory extends AnyFormatGraphConfigFactory
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GraphConfigFactory
forAnyFormat()
returns a new graph config factory to parse any graph config from various input sourcesstatic FileGraphConfigFactory
forFileFormats()
returns a new graph config factory to parse file-based graph configs from various input sourcesstatic PartitionedGraphConfigFactory
forPartitioned()
returns a new graph config factory to parse partitioned graph configstatic RdfGraphConfigFactory
forRdf()
returns a new RDF graph config factorystatic TwoTablesRdbmsGraphConfigFactory
forTwoTablesRdbms()
returns a new graph config factory to create graph configs targeting the Oracle RDBMS database in the two-tables format.static TwoTablesTextGraphConfigFactory
forTwoTablesText()
returns a new graph config factory to create graph configs targeting files in the two-tables format.static void
init()
static void
init(boolean wantStrictMode)
-
Methods inherited from class oracle.pgx.config.AnyFormatGraphConfigFactory
fromProperties
-
Methods inherited from class oracle.pgx.config.AbstractConfigFactory
fromFile, fromFilePath, fromInputStream, fromInputStream, fromJson, fromJson, fromPath, fromProperties
-
-
-
-
Method Detail
-
init
public static void init()
-
init
public static void init(boolean wantStrictMode)
-
forPartitioned
public static PartitionedGraphConfigFactory forPartitioned()
returns a new graph config factory to parse partitioned graph config- Returns:
- a new factory
-
forAnyFormat
public static GraphConfigFactory forAnyFormat()
returns a new graph config factory to parse any graph config from various input sources- Returns:
- a new factory
-
forFileFormats
public static FileGraphConfigFactory forFileFormats()
returns a new graph config factory to parse file-based graph configs from various input sources- Returns:
- a new factory
-
forTwoTablesRdbms
public static TwoTablesRdbmsGraphConfigFactory forTwoTablesRdbms()
returns a new graph config factory to create graph configs targeting the Oracle RDBMS database in the two-tables format.- Returns:
- a new factory
-
forTwoTablesText
public static TwoTablesTextGraphConfigFactory forTwoTablesText()
returns a new graph config factory to create graph configs targeting files in the two-tables format.- Returns:
- a new factory
-
forRdf
public static RdfGraphConfigFactory forRdf()
returns a new RDF graph config factory- Returns:
- a new factory
-
-