Package org.apache.sling.api.wrappers
Class CompositeValueMap
java.lang.Object
org.apache.sling.api.wrappers.CompositeValueMap
Deprecated.
An implementation of the
ValueMap
based on two ValueMap
s:
- One containing the properties
- Another one containing the defaults to use in case the properties map
does not contain the values.
In case you would like to avoid duplicating properties on multiple resources,
you can use a CompositeValueMap
to get a concatenated map of
properties.- Since:
- 2.3 (Sling API Bundle 2.5.0)
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionCompositeValueMap
(ValueMap properties, ValueMap defaults) Deprecated.ConstructorCompositeValueMap
(ValueMap properties, ValueMap defaults, boolean merge) Deprecated.Constructor -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Deprecated.boolean
containsKey
(Object key) Deprecated.boolean
containsValue
(Object value) Deprecated.entrySet()
Deprecated.<T> T
Deprecated.Get a named property and convert it into the given type.<T> T
Deprecated.Get a named property and convert it into the given type.Deprecated.boolean
isEmpty()
Deprecated.keySet()
Deprecated.Deprecated.void
Deprecated.Deprecated.int
size()
Deprecated.values()
Deprecated.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
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
CompositeValueMap
Deprecated.Constructor -
CompositeValueMap
Deprecated.Constructor- Parameters:
properties
- TheValueMap
to read fromdefaults
- The defaultValueMap
to use as fallbackmerge
- Merge flag - Iftrue
, getting a key would return the current property map's value (if available), even if the corresponding default does not exist. - Iffalse
, getting a key would returnnull
if the corresponding default does not exist
-
-
Method Details
-
get
Deprecated.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 returnnull
in this case. -
get
Deprecated.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:
get
in 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 returnnull
by 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()Deprecated. -
isEmpty
public boolean isEmpty()Deprecated. -
containsKey
Deprecated.- Specified by:
containsKey
in interfaceMap<String,
Object>
-
containsValue
Deprecated.- Specified by:
containsValue
in interfaceMap<String,
Object>
-
get
Deprecated. -
put
Deprecated. -
remove
Deprecated. -
putAll
Deprecated. -
clear
public void clear()Deprecated. -
keySet
Deprecated. -
values
Deprecated. -
entrySet
Deprecated.
-
ValueMapUtil.merge(ValueMap...)
instead. Note that it does not support the parametermerge = false
. However, this could easily be achieved with another decorator that restricts the set of allowed keys.