Package org.apache.sling.api.wrappers
Class ValueMapDecorator
- java.lang.Object
-
- org.apache.sling.api.wrappers.ValueMapDecorator
-
- Direct Known Subclasses:
DeepReadValueMapDecorator,ModifiableValueMapDecorator
public class ValueMapDecorator extends Object implements ValueMap
-
-
Constructor Summary
Constructors Constructor Description ValueMapDecorator(Map<String,Object> base)Creates a new wrapper around a given map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,Object>>entrySet()booleanequals(Object obj)<T> Tget(@NotNull String name, @NotNull Class<T> type)Get a named property and convert it into the given type.<T> Tget(@NotNull String name, T defaultValue)Get a named property and convert it into the given type.Objectget(Object key)inthashCode()booleanisEmpty()Set<String>keySet()Objectput(String key, Object value)voidputAll(Map<? extends String,?> t)Objectremove(Object key)intsize()StringtoString()Collection<Object>values()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
get
public <T> T get(@NotNull @NotNull String name, @NotNull @NotNull 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.
-
get
@NotNull public <T> T get(@NotNull @NotNull String name, @NotNull 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- 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>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,Object>
-
hashCode
public int hashCode()
-
-