Removes all values associated with the key key. Once this method returns, key will not be mapped to any values, so it will not appear in #keySet(). @return true if the multimap changed.
(K key)
| 122 | * @return {@code true} if the multimap changed. |
| 123 | */ |
| 124 | boolean removeAll(K key); |
| 125 | |
| 126 | /** |
| 127 | * Removes all key-value pairs for {@code key} and {@code values}. |
no outgoing calls