Package org.apache.sling.api.wrappers
Class DeepReadValueMapDecorator
- java.lang.Object
-
- org.apache.sling.api.wrappers.ValueMapDecorator
-
- org.apache.sling.api.wrappers.DeepReadValueMapDecorator
-
- All Implemented Interfaces:
java.util.Map<java.lang.String,java.lang.Object>,ValueMap
- Direct Known Subclasses:
DeepReadModifiableValueMapDecorator
public class DeepReadValueMapDecorator extends ValueMapDecorator
A value map wrapper which implements deep reading of properties based on the resource tree.- Since:
- 2.5 (Sling API Bundle 2.7.0)
-
-
Constructor Summary
Constructors Constructor Description DeepReadValueMapDecorator(Resource resource, ValueMap base)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsKey(java.lang.Object key)<T> Tget(@NotNull java.lang.String name, @NotNull java.lang.Class<T> type)Get a named property and convert it into the given type.<T> Tget(@NotNull java.lang.String name, T defaultValue)Get a named property and convert it into the given type.java.lang.Objectget(java.lang.Object key)
-
-
-
Method Detail
-
get
public <T> T get(@NotNull @NotNull java.lang.String name, @NotNull @NotNull java.lang.Class<T> type)Description copied from class:ValueMapDecoratorGet 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. - See Also:
ValueMap.get(java.lang.String, java.lang.Class)
-
get
@NotNull public <T> T get(@NotNull @NotNull java.lang.String name, @NotNull T defaultValue)Description copied from class:ValueMapDecoratorGet 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.
- See Also:
ValueMap.get(java.lang.String, java.lang.Object)
-
containsKey
public boolean containsKey(java.lang.Object key)
Description copied from class:ValueMapDecorator- Specified by:
containsKeyin interfacejava.util.Map<java.lang.String,java.lang.Object>- Overrides:
containsKeyin classValueMapDecorator- See Also:
ValueMapDecorator.containsKey(java.lang.Object)
-
get
public java.lang.Object get(java.lang.Object key)
Description copied from class:ValueMapDecorator- Specified by:
getin interfacejava.util.Map<java.lang.String,java.lang.Object>- Overrides:
getin classValueMapDecorator- See Also:
ValueMapDecorator.get(java.lang.Object)
-
-