Optional
prefix: stringReadonly
backendThe backend that is used to read and write configuration data.
Protected
forestThe forest model of the configuration keys and values.
Protected
Readonly
mapperOptional
Readonly
prefixAn optional prefix that is used to filter configuration keys that are read from the configuration source.
The name of the configuration source.
The ordinal of the configuration source.
Retrieves the value of the specified key from the configuration source and converts it to a boolean.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a boolean.
Retrieves the value of the specified key from the configuration source and converts it to a number.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a number.
Retrieves the value of the specified key from the configuration source and converts it an object of the specified type. If the key is not specified, the method returns the entire configuration as an object.
The class of the object to which the value should be converted.
Optional
key: stringThe key to use to retrieve the value from the configuration source.
The value of the specified key as a boolean.
Retrieves the value of the specified key from the configuration source and converts it to an array of objects of the specified type. If the key is not specified, the method returns the entire configuration as an array of objects.
The class of the objects to which the values should be converted.
The key to use to retrieve the values from the configuration source.
Retrieves the value of the specified key from the configuration source and converts it to a string.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a string.
Retrieves the value of the specified key from the configuration source and converts it to a string array.
The key to use to retrieve the value from the configuration source.
The value of the specified key as a string array.
Loads the configuration data from the configuration source.
Enumerates the key-value pairs that are available in the configuration source.
A map of key-value pairs that are available in the configuration source.
Enumerates the set of property names that are available in the configuration source.
A set of property names that are available in the configuration source.
Reloads the configuration source from the underlying storage backend.
A ConfigSource that reads configuration data from the environment.
Strings are read verbatim from the environment variables. Numbers and booleans are converted from strings using the JSON parser. Objects, arrays of objects, and arrays of primitives are assumed to be stored as serialized JSON strings.