Package com.adobe.aem.dermis.model.value
Interface IValueMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IValueget(java.lang.String key)Returns the value to which the specified key is mapped, ornullif this valuemap contains no mapping for the key.IValueput(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, ornullif 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
nullif 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:
putin 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:
-
-