Copies all the mappings in the given map to this map. These mappings will replace all mappings that this map had for any of the keys currently in the given map. @param map the map to copy mappings from. @throws ClassCastException if a key in the specified map cannot be compar
(Map<? extends K, ? extends V> map)
| 1823 | * comparator cannot handle {@code null} keys. |
| 1824 | */ |
| 1825 | @Override |
| 1826 | public void putAll(Map<? extends K, ? extends V> map) { |
| 1827 | super.putAll(map); |
| 1828 | } |
| 1829 | |
| 1830 | /** |
| 1831 | * Removes the mapping with the specified key from this map. |