Package org.apache.sling.api.resource
Interface ValueMap
-
- All Superinterfaces:
java.util.Map<java.lang.String,java.lang.Object>
- All Known Subinterfaces:
Framework
,FrameworkComponent
,InheritanceValueMap
,ModifiableValueMap
,PersistableValueMap
,Profile
,Style
- All Known Implementing Classes:
BulkEditValueMap
,ComponentInheritanceValueMap
,CompositeValueMap
,ContentPolicyStyle
,DeepModifiableValueMapDecorator
,DeepReadModifiableValueMapDecorator
,DeepReadValueMapDecorator
,DistributionPackageInfo
,DistributionQueueItem
,HierarchyNodeInheritanceValueMap
,MergedValueMap
,ModifiableMappedValueMapDecorator
,ModifiableValueMapDecorator
,ValueMapDecorator
,ValueMapWrapper
@ConsumerType public interface ValueMap extends java.util.Map<java.lang.String,java.lang.Object>
TheValueMap
is an easy way to access properties of a resource. With resources you can useResource.getValueMap()
to obtain the value map of a resource. The various getter methods can be used to get the properties of the resource.In addition a value map returned by a resource supports getting of deep values, like get("content/title") which is equivalent to call getChild("content") on the resource, get the value map of that resource and call get("title") - but without requiring to do all the checks. Only the following methods support deep reads:
Map.get(Object)
,get(String, Class)
,get(String, Object)
andMap.containsKey(Object)
. AValueMap
should be immutable.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default <T> T
get(@NotNull java.lang.String name, @NotNull java.lang.Class<T> type)
Get a named property and convert it into the given type.default <T> T
get(@NotNull java.lang.String name, T defaultValue)
Get a named property and convert it into the given type.
-
-
-
Field Detail
-
EMPTY
static final ValueMap EMPTY
Empty immutable value map.
-
-
Method Detail
-
get
@Nullable default <T> T get(@NotNull @NotNull java.lang.String name, @NotNull @NotNull java.lang.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 returnnull
in this case.- 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
null
if non existing or can't be converted.
-
get
@NotNull default <T> T get(@NotNull @NotNull java.lang.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
.- 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 onget(String, Class)
.- Returns:
- Return named value converted to type T or the default value if non existing or can't be converted.
-
-