| net.infonode.util.collection.map.base.Map
iterator | MapIterator iterator()(Code) | | Returns an iterator for this map.
an iterator for this map |
put | Object put(Object key, Object value)(Code) | | Associate a key with a value.
This will overwrite any existing association.
Parameters: key - the key Parameters: value - the value the old value associated with this key, null if no value existed |
remove | Object remove(Object key)(Code) | | Removes a key and it's value.
Parameters: key - the key the value associated with the key, null if no value existed |
|
|