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
(@SuppressWarnings("unused")
K key, @SuppressWarnings("unused")
V value)
| 513 | * support {@code null} keys or values. |
| 514 | */ |
| 515 | public V put(@SuppressWarnings("unused") |
| 516 | K key, @SuppressWarnings("unused") |
| 517 | V value) { |
| 518 | throw new UnsupportedOperationException(); |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * Copies every mapping in the specified map to this map. |