Removes all values associated with the specified key. @param key the key to be removed along with its associated values
(K key)
| 67 | * @param key the key to be removed along with its associated values |
| 68 | */ |
| 69 | public void removeAll(K key) { |
| 70 | map.remove(key); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Checks if the MultiMap contains the specified value for the given key. |
no test coverage detected