Interface ConfigurationMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAsBoolean(String key)
Returns the value with the specified key asBoolean
long
getAsLong(String key)
Returns the value with the specified key asLong
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
getAsBoolean
boolean getAsBoolean(String key)
Returns the value with the specified key asBoolean
- Parameters:
key
-- Returns:
- value as boolean
-
getAsLong
long getAsLong(String key) throws NumberFormatException
Returns the value with the specified key asLong
- Parameters:
key
-- Returns:
- value as long
- Throws:
NumberFormatException
-
-