Uses of Class
oracle.pgx.config.GraphBuilderConfig.Field
-
Packages that use GraphBuilderConfig.Field 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 GraphBuilderConfig.Field in oracle.pgx.api
Methods in oracle.pgx.api with parameters of type GraphBuilderConfig.Field Modifier and Type Method Description java.lang.Object
GraphBuilder. getConfigParameter(GraphBuilderConfig.Field parameter)
Retrieve the value for the given config parameterjava.lang.Object
GraphBuilderImpl. getConfigParameter(GraphBuilderConfig.Field parameter)
void
GraphBuilder. setConfigParameter(GraphBuilderConfig.Field parameter, java.lang.Object value)
Set the given configuration parameter to the given valuevoid
GraphBuilderImpl. setConfigParameter(GraphBuilderConfig.Field parameter, java.lang.Object value)
-
Uses of GraphBuilderConfig.Field in oracle.pgx.config
Methods in oracle.pgx.config that return GraphBuilderConfig.Field Modifier and Type Method Description static GraphBuilderConfig.Field[]
GraphBuilderConfig. getConfigFields()
static GraphBuilderConfig.Field
GraphBuilderConfig.Field. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GraphBuilderConfig.Field[]
GraphBuilderConfig.Field. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in oracle.pgx.config that return types with arguments of type GraphBuilderConfig.Field Modifier and Type Method Description abstract java.util.Map<GraphBuilderConfig.Field,java.lang.Object>
AbstractGraphBuilderConfig. getValues()
java.util.Map<GraphBuilderConfig.Field,java.lang.Object>
GraphBuilderConfig. getValues()
Gets the parsed values.java.util.Map<GraphBuilderConfig.Field,java.lang.Object>
GraphBuilderConfig. getValuesWithoutDefaults()
Gets the values without defaults.Methods in oracle.pgx.config with parameters of type GraphBuilderConfig.Field Modifier and Type Method Description boolean
GraphBuilderConfig. hasDefaultValue(GraphBuilderConfig.Field field)
Checks for default value.
-