Package com.adobe.aem.dermis.model.value
Interface IValueMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IValue
get(java.lang.String key)
Returns the value to which the specified key is mapped, ornull
if this valuemap contains no mapping for the key.IValue
put(java.lang.String key, IValue value)
Associates the specified value with the specified key in this valueMap
-
-
-
Method Detail
-
get
IValue get(java.lang.String key)
Returns the value to which the specified key is mapped, ornull
if this valuemap contains no mapping for the key.- Parameters:
key
- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
null
if this valuemap contains no mapping for the key
-
put
IValue put(java.lang.String key, IValue value)
Associates the specified value with the specified key in this valueMap- Specified by:
put
in interfacejava.util.Map<java.lang.String,IValue>
- Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified key- Returns:
-
-