@Deprecated public interface ConfigMap
| Modifier and Type | Method and Description |
|---|---|
String |
get(String key)
Deprecated.
Returns the property value associated with a given key or null if no value is set.
|
default String |
get(String key,
String dflt)
Deprecated.
Returns the property value associated with a given key.
|
default boolean |
getBoolean(String key)
Deprecated.
Get an boolean value associated with a given key.
|
default boolean |
getBoolean(String key,
boolean dflt)
Deprecated.
Get an boolean value associated with a given key.
|
default double |
getDouble(String key)
Deprecated.
Get an double value associated with a given key.
|
default double |
getDouble(String key,
double dflt)
Deprecated.
Get an double value associated with a given key.
|
default int |
getInt(String key)
Deprecated.
Get an int value associated with a given key.
|
default int |
getInt(String key,
int dflt)
Deprecated.
Get an int value associated with a given key.
|
default long |
getLong(String key)
Deprecated.
Get an long value associated with a given key.
|
default long |
getLong(String key,
long dflt)
Deprecated.
Get an long value associated with a given key.
|
String get(String key)
key - Property name to lookup.default String get(String key, String dflt)
key - Property name to lookup.dflt - Default value to return if the property is not set.dflt if not set.default int getInt(String key)
key - Property name to lookup.default int getInt(String key, int dflt)
key - Property name to lookup.dflt - Default value to return if the property is not set.dflt if not set.default long getLong(String key)
key - Property name to lookup.default long getLong(String key, long dflt)
key - Property name to lookup.dflt - Default value to return if the property is not set.dflt if not set.default double getDouble(String key)
key - Property name to lookup.default double getDouble(String key, double dflt)
key - Property name to lookup.dflt - Default value to return if the property is not set.dflt if not set.default boolean getBoolean(String key)
key - Property name to lookup.default boolean getBoolean(String key, boolean dflt)
key - Property name to lookup.dflt - Default value to return if the property is not set.dflt if not set.