Uses of Class
oracle.pgx.config.PgxConfig.Field
-
Packages that use PgxConfig.Field Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.admin This package contains the administrative interfaces of PGX.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of PgxConfig.Field in oracle.pgx.api
Methods in oracle.pgx.api that return types with arguments of type PgxConfig.Field Modifier and Type Method Description java.util.Map<PgxConfig.Field,java.lang.Object>
ServerInstance. getPgxConfig()
Blocking version ofServerInstance.getPgxConfigAsync()
.PgxFuture<java.util.Map<PgxConfig.Field,java.lang.Object>>
ServerInstance. getPgxConfigAsync()
Gets the PGX config.Method parameters in oracle.pgx.api with type arguments of type PgxConfig.Field Modifier and Type Method Description void
ServerInstance. startEngine(java.util.Map<PgxConfig.Field,java.lang.Object> config)
Blocking version ofServerInstance.startEngineAsync(Map)
.PgxFuture<java.lang.Void>
ServerInstance. startEngineAsync(java.util.Map<PgxConfig.Field,java.lang.Object> config)
Starts the PGX engine with a custom configuration.void
ServerInstance. updatePgxConfig(java.util.Map<PgxConfig.Field,java.lang.Object> config)
Blocking version ofServerInstance.updatePgxConfigAsync(Map)
.PgxFuture<java.lang.Void>
ServerInstance. updatePgxConfigAsync(java.util.Map<PgxConfig.Field,java.lang.Object> config)
Replaces the current PGX config with the given configuration. -
Uses of PgxConfig.Field in oracle.pgx.api.admin
Methods in oracle.pgx.api.admin that return types with arguments of type PgxConfig.Field Modifier and Type Method Description PgxFuture<java.util.Map<PgxConfig.Field,java.lang.Object>>
Control. getPgxConfig()
Gets the pgx config.Method parameters in oracle.pgx.api.admin with type arguments of type PgxConfig.Field Modifier and Type Method Description PgxFuture<java.lang.Void>
Control. start(java.util.Map<PgxConfig.Field,java.lang.Object> config)
PgxFuture<java.lang.Void>
Control. updatePgxConfig(java.util.Map<PgxConfig.Field,java.lang.Object> config)
Replaces the current PGX config with the given configuration. -
Uses of PgxConfig.Field in oracle.pgx.config
Methods in oracle.pgx.config that return PgxConfig.Field Modifier and Type Method Description static PgxConfig.Field[]
PgxConfig. getConfigFields()
static PgxConfig.Field
PgxConfig.Field. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PgxConfig.Field[]
PgxConfig.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 PgxConfig.Field Modifier and Type Method Description java.util.List<PgxConfig.Field>
PgxConfig. getBackendFields()
abstract java.util.Map<PgxConfig.Field,java.lang.Object>
AbstractPgxConfig. getValues()
java.util.Map<PgxConfig.Field,java.lang.Object>
PgxConfig. getValues()
Gets the parsed values.java.util.Map<PgxConfig.Field,java.lang.Object>
PgxConfigBuilder. getValues()
java.util.Map<PgxConfig.Field,java.lang.Object>
PgxConfig. getValuesWithoutDefaults()
Gets the values without defaults.Methods in oracle.pgx.config with parameters of type PgxConfig.Field Modifier and Type Method Description boolean
PgxConfig. hasDefaultValue(PgxConfig.Field field)
Checks for default value.Method parameters in oracle.pgx.config with type arguments of type PgxConfig.Field Modifier and Type Method Description static PgxConfig
AbstractPgxConfig. configFromMap(java.util.Map<PgxConfig.Field,java.lang.Object> configValues)
PgxConfigBuilder
PgxConfigBuilder. putAll(java.util.Map<PgxConfig.Field,java.lang.Object> values)
Puts all values from the given map into this builder.Constructor parameters in oracle.pgx.config with type arguments of type PgxConfig.Field Constructor Description PgxConfigBuilder(java.util.Map<PgxConfig.Field,java.lang.Object> values)
Constructs a PgxConfigBuilder initialized with the values from the given map
-