<T> boolean |
AbstractConfig.contains(IKey<T> key) |
|
<T> boolean |
Config.contains(IKey<T> key) |
returns true if given key is set to this config
|
<T> boolean |
ConfigWithFallback.contains(IKey<T> key) |
|
<T> T |
AbstractConfig.get(IKey<T> key) |
returns the value for the given key.
|
<T> T |
Config.get(IKey<T> key) |
returns the value for the given key.
|
<T> T |
ConfigWithFallback.get(IKey<T> key) |
|
protected <T> String |
AbstractConfig.getString(IKey<T> key) |
returns the value as string according to given key.
|
<T> AbstractConfig |
AbstractConfig.put(IKey<T> key,
T value) |
puts a new config to the configuration map.
|
<T> Config |
Config.put(IKey<T> key,
T value) |
puts a new config to the configuration map.
|
<T> ConfigWithFallback |
ConfigWithFallback.put(IKey<T> key,
T value) |
|
<T> T |
AbstractConfig.remove(IKey<T> key) |
removes the given key (and its value) from configuration map.
|
<T> T |
Config.remove(IKey<T> key) |
removes the given key (and its value) from configuration map.
|
<T> T |
ConfigWithFallback.remove(IKey<T> key) |
|