Changed Methods |
boolean containsEntry(Object, Object)
|
Change in signature from (java.lang.Object, java.lang.Object ) to (Object, Object ).
|
Returns {@code true} if this multimap contains at least one key-value pair with the key {@code
key} and the value {@code value}. |
boolean containsKey(Object )
|
Change in signature from java.lang.Object to Object .
|
Returns {@code true} if this multimap contains at least one key-value pair with the key {@code
key}. |
boolean containsValue(Object )
|
Change in signature from java.lang.Object to Object .
|
Returns {@code true} if this multimap contains at least one key-value pair with the value
{@code value}. |
boolean equals(Object )
|
Change in signature from java.lang.Object to Object .
|
Compares the specified object with this multimap for equality. |
boolean remove(Object, Object)
|
Change in signature from (java.lang.Object, java.lang.Object ) to (Object, Object ).
|
Removes a single key-value pair with the key {@code key} and the value {@code value} from this
multimap, if such exists. |
Collection<V> removeAll(Object )
|
Change in signature from java.lang.Object to Object .
|
Removes all values associated with the key {@code key}. |