de.grogra.util
Interface ModifiableMap
- All Superinterfaces:
- Map
- All Known Implementing Classes:
- Configuration, ConfigurationSet, SOBindingImpl, StringMap
public interface ModifiableMap
- extends Map
This interface adds a put
-method to the
Map
interface.
- Author:
- Ole Kniemeyer
Nested classes/interfaces inherited from interface de.grogra.util.Map |
Map.Chain |
Method Summary |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Maps key to value . |
Methods inherited from interface de.grogra.util.Map |
get |
put
java.lang.Object put(java.lang.Object key,
java.lang.Object value)
- Maps
key
to value
. Following invocations
of the get
-method with key
as key will
return value
.
- Parameters:
key
- a keyvalue
- the value to be associated with key
- Returns:
- the previously associated value, or
null