Maps the specified key to the specified value. @param key the key. @param value the value. @return the value of any previous mapping with the specified key or null if there was no mapping. @throws UnsupportedOperationException if adding to this m
(K key, V value)
| 277 | * support {@code null} keys or values. |
| 278 | */ |
| 279 | public V put(K key, V value) { |
| 280 | throw new UnsupportedOperationException(); |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * Copies every mapping in the specified map to this map. |