Package com.day.cq.wcm.foundation.forms
Class MergedValueMap
java.lang.Object
com.day.cq.wcm.foundation.forms.MergedValueMap
MergedValueMap merges the values of the value maps from multiple
resources. It merges the values of all value maps behind the resources, ie.
provides a null value for a key if the value is not the same in all resources
and only presents a value if that one is present in exactly all of the
resources.
It is optimized for the forms module, ie. on calls to
get(String, Class) with String[] as type (see
FormsHelper.getValues(org.apache.sling.api.SlingHttpServletRequest, Resource)
).
Note: this class is not synchronized, ie. not thread-safe.
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()booleancontainsKey(Object key) booleancontainsValue(Object value) entrySet()<T> TGet a named property and convert it into the given type.<T> TGet a named property and convert it into the given type.booleanisEmpty()keySet()voidintsize()values()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
MergedValueMap
-
-
Method Details
-
get
-
get
Description copied from interface:ValueMapGet 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 returnnullin this case. -
get
Description copied from interface:ValueMapGet 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.
Implementation hint: In the past it was allowed to call this with a 2nd parameter beingnull. Therefore all implementations should internally callMap.get(Object)when the 2nd parameter has valuenull.- Specified by:
getin interfaceValueMap- Type Parameters:
T- The expected 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. Must not benull. If you want to returnnullby default rather rely onValueMap.get(String, Class).- Returns:
- Return named value converted to type T or the default value if non existing or can't be converted.
-
size
public int size() -
isEmpty
public boolean isEmpty() -
containsKey
- Specified by:
containsKeyin interfaceMap<String,Object>
-
containsValue
- Specified by:
containsValuein interfaceMap<String,Object>
-
entrySet
-
keySet
-
values
-
clear
public void clear() -
put
-
putAll
-
remove
-