public interface ValueMap extends Map<String,Object>, Serializable
ValueMap
is an easy way to access properties or metadata of a resource. With resources, you can
use Resource#getValueMap()
to obtain the value map of a resource. The various getter methods can
be used to get the properties of the resource.
A ValueMap should be immutable.
Modifier and Type | Method and Description |
---|---|
<T> T |
get(String name,
Class<T> type)
Get a named property and convert it into the given type.
|
<T> T |
get(String name,
T defaultValue)
Get a named property and convert it into the given type.
|
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
<T> T get(String name, Class<T> type)
T
- value typename
- The name of the propertytype
- The class of the type<T> T get(String name, T defaultValue)
T
- value typename
- 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.
If this is null any existing property is not converted.Copyright © 2017–2020 Hippo B.V. (http://www.onehippo.com). All rights reserved.