Class AbstractValueMap
- java.lang.Object
-
- org.onehippo.cms7.crisp.api.resource.AbstractValueMap
-
- All Implemented Interfaces:
Serializable
,Map<String,Object>
,ValueMap
- Direct Known Subclasses:
DefaultValueMap
public abstract class AbstractValueMap extends Object implements ValueMap
AbstractValueMap
base class.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractValueMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
get(String name, Class<T> type)
Get a named property and convert it into the given type.<T> T
get(String name, T defaultValue)
Get a named property and convert it into the given type.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
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
-
get
public final <T> T get(String name, Class<T> type)
Description copied from interface:ValueMap
Get a named property and convert it into the given type. This method does not support conversion into a primitive type or an array of a primitive type. It should return null in this case.
-
get
public final <T> T get(String name, T defaultValue)
Description copied from interface:ValueMap
Get a named property and convert it into the given type. This method does not support conversion into a primitive type or an array of a primitive type. It should return the default value in this case.- Specified by:
get
in interfaceValueMap
- Type Parameters:
T
- value type- Parameters:
name
- The name of the propertydefaultValue
- The default value to use if the named property does not exist or cannot be converted to the requested type. The default value is also used to define the type to convert the value to. If this is null any existing property is not converted.- Returns:
- named value converted to type T or the default value if non existing or can't be converted
-
-