Interface Configuration.ListValue
- Enclosing interface:
Configuration
public static interface Configuration.ListValue
Return a List of values for a configuration key.
Example
List<Integer> codes = Config.list().ofInt("my.codes", 42, 54);
-
Method Summary
Modifier and TypeMethodDescriptionReturn the list of values for the key, returning an empty collection if the configuration is not defined.Return the list of values for the key, returning the default values if the configuration is not defined.Return the list of integer values for the key, returning an empty collection if the configuration is not defined.Return the list of integer values for the key, returning the default values if the configuration is not defined.Return the list of long values for the key, returning an empty collection if the configuration is not defined.Return the long values for the key, returning the default values if the configuration is not defined.<T> List<T> Apply a mapping function to the values for the given key, returning an empty collection if the configuration is not defined.
-
Method Details
-
of
-
of
-
ofInt
-
ofInt
-
ofLong
-
ofLong
-
ofType
Apply a mapping function to the values for the given key, returning an empty collection if the configuration is not defined.- Parameters:
key- The configuration keymappingFunction- the mapping function to execute on each value- Returns:
- The configured and mapped values
-