Changed Methods |
boolean containsEntry(Object, Object)
|
Change in signature from (Object, Object ) to (java.lang.Object, java.lang.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 Object to java.lang.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 Object to java.lang.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 Object to java.lang.Object .
|
Compares the specified object with this multimap for equality. |
boolean remove(Object, Object)
|
Change in signature from (Object, Object ) to (java.lang.Object, java.lang.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 Object to java.lang.Object .
|
Removes all values associated with the key {@code key}. |