public interface Put<K,V>
Map interface.
NOTE: in the original Map interface, Map is known to have the same return type as Map, namely V. Put makes no assumptions in this regard (there is no association with, nor even knowledge of, a "reading" interface) and thus defines put(Object, Object) as returning Object.
Get
void clear()
Map.clear()
Objectput(K key, V value)
Map.put(Object, Object)
void putAll(Map<? extends K ,? extends V> t)
Map.putAll(Map)