Uses of Interface
oracle.pgx.config.ReadGraphOption
-
Packages that use ReadGraphOption 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 ReadGraphOption in oracle.pgx.api
Methods in oracle.pgx.api with parameters of type ReadGraphOption Modifier and Type Method Description PgxGraph
PgxSession. readGraphByName(java.lang.String schemaName, java.lang.String graphName, GraphSource source, ReadGraphOption... options)
Blocking version ofPgxSession.readGraphByNameAsync(String, String, GraphSource, ReadGraphOption...)
.PgxGraph
PgxSession. readGraphByName(java.lang.String graphName, GraphSource source, ReadGraphOption... options)
Blocking version ofPgxSession.readGraphByNameAsync(String, GraphSource, ReadGraphOption...)
.PgxFuture<PgxGraph>
PgxSession. readGraphByNameAsync(java.lang.String schemaName, java.lang.String graphName, GraphSource source, ReadGraphOption... options)
Reads a graph identified by the given schema name and graph name into memory.PgxFuture<PgxGraph>
PgxSession. readGraphByNameAsync(java.lang.String graphName, GraphSource source, ReadGraphOption... options)
Reads a graph identified by the given name into memory. -
Uses of ReadGraphOption in oracle.pgx.config
Classes in oracle.pgx.config that implement ReadGraphOption Modifier and Type Class Description static class
ReadGraphOption.OnMissingVertexOption
Class for encapsulating a OnMissingVertex config optionstatic class
ReadGraphOption.OptimizedForOption
Class for encapsulating a GraphOptimizedFor config optionstatic class
ReadGraphOption.ParallelHintDegreeReadGraphOption
Class for encapsulating the ParallelHintDegree config optionstatic class
ReadGraphOption.SynchronizableOptionReadGraphOption
Class for option, which specifies if graph cannot be synchronized, PGX will throw an ExceptionMethods in oracle.pgx.config with type parameters of type ReadGraphOption Modifier and Type Method Description static <T extends ReadGraphOption>
voidReadGraphOption. validateUnique(java.util.Collection<ReadGraphOption> options, java.lang.Class<T> clazz, java.lang.String errorMessage)
Validates a given option list to contain only one item of the specified type.Method parameters in oracle.pgx.config with type arguments of type ReadGraphOption Modifier and Type Method Description static <T extends ReadGraphOption>
voidReadGraphOption. validateUnique(java.util.Collection<ReadGraphOption> options, java.lang.Class<T> clazz, java.lang.String errorMessage)
Validates a given option list to contain only one item of the specified type.
-