Uses of Class
oracle.pgx.config.PreparedQueryConfig.Field
-
Packages that use PreparedQueryConfig.Field Package Description oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of PreparedQueryConfig.Field in oracle.pgx.config
Methods in oracle.pgx.config that return PreparedQueryConfig.Field Modifier and Type Method Description static PreparedQueryConfig.Field[]
PreparedQueryConfig. getConfigFields()
static PreparedQueryConfig.Field
PreparedQueryConfig.Field. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PreparedQueryConfig.Field[]
PreparedQueryConfig.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 PreparedQueryConfig.Field Modifier and Type Method Description java.util.Map<PreparedQueryConfig.Field,java.lang.Object>
PreparedQueryConfig. getValues()
Gets the parsed values.java.util.Map<PreparedQueryConfig.Field,java.lang.Object>
PreparedQueryConfigBuilder. getValues()
java.util.Map<PreparedQueryConfig.Field,java.lang.Object>
PreparedQueryConfig. getValuesWithoutDefaults()
Gets the values without defaults.Methods in oracle.pgx.config with parameters of type PreparedQueryConfig.Field Modifier and Type Method Description boolean
PreparedQueryConfig. hasDefaultValue(PreparedQueryConfig.Field field)
Checks for default value.Method parameters in oracle.pgx.config with type arguments of type PreparedQueryConfig.Field Modifier and Type Method Description PreparedQueryConfigBuilder
PreparedQueryConfigBuilder. putAll(java.util.Map<PreparedQueryConfig.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 PreparedQueryConfig.Field Constructor Description PreparedQueryConfigBuilder(java.util.Map<PreparedQueryConfig.Field,java.lang.Object> values)
Constructs a PreparedQueryConfigBuilder initialized with the values from the given map
-