K
- the type of the keys in this mapV
- the type of the values in this mappublic 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
Modifier and Type | Method and Description |
---|---|
void |
clear() |
java.lang.Object |
put(K key,
V value)
Note that the return type is Object, rather than V as in the Map interface.
|
void |
putAll(java.util.Map<? extends K,? extends V> t) |
void clear()
Map.clear()
java.lang.Object put(K key, V value)
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keykey
, or
null
if there was no mapping for key
.
(A null
return can also indicate that the map
previously associated null
with key
,
if the implementation supports null
values.)Map.put(Object, Object)
Copyright © 2010 - 2020 Adobe. All Rights Reserved