Package com.adobe.granite.rest.utils
Class DeepModifiableValueMapDecorator
- java.lang.Object
-
- org.apache.sling.api.wrappers.ValueMapDecorator
-
- org.apache.sling.api.wrappers.ModifiableValueMapDecorator
-
- com.adobe.granite.rest.utils.DeepModifiableValueMapDecorator
-
- All Implemented Interfaces:
Map<String,Object>,ModifiableValueMap,ValueMap
public class DeepModifiableValueMapDecorator extends ModifiableValueMapDecorator
A value map wrapper which implements deep reading/writing of properties based on the resource tree and a set of exposed sub-nodes. Note that only properties of exposed sub-nodes can be updated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsKey(Object key)Set<Map.Entry<String,Object>>entrySet()Objectget(Object key)<T> Tget(String name, Class<T> type)Get a named property and convert it into the given type.<T> Tget(String name, T defaultValue)Get a named property and convert it into the given type.Set<String>keySet()Objectput(String key, Object value)voidputAll(Map<? extends String,?> t)Collection<Object>values()-
Methods inherited from class org.apache.sling.api.wrappers.ValueMapDecorator
clear, containsValue, equals, hashCode, isEmpty, remove, size, toString
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsValue, equals, forEach, getOrDefault, hashCode, isEmpty, merge, putIfAbsent, remove, remove, replace, replace, replaceAll, size
-
-
-
-
Method Detail
-
get
public <T> T get(String name, Class<T> type)
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 returnnullin this case.- Specified by:
getin interfaceValueMap- Overrides:
getin classValueMapDecorator- Type Parameters:
T- The class of the type- Parameters:
name- The name of the propertytype- The class of the type- Returns:
- Return named value converted to type T or
nullif non existing or can't be converted.
-
get
public <T> T get(String name, T defaultValue)
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.
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- Overrides:
getin classValueMapDecorator- 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.
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,Object>- Overrides:
containsKeyin classValueMapDecorator
-
values
public Collection<Object> values()
-
-