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