public interface Put<K,V>
Map
interface.
NOTE: in the original Map
interface, Map.put(Object, Object)
is known
to have the same return type as Map.get(Object)
, 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()
Object put(K key, V value)
Map.put(Object, Object)
void putAll(Map<? extends K,? extends V> t)
Map.putAll(Map)
Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.