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. |
Collection<V> get(K extends Object )
|
Change in signature from K to (K extends Object ).
|
Returns a view collection of the values associated with {@code key} in this multimap, if any. |
boolean put(K, extends, Object, V, extends, Object)
|
Change in signature from (K, V ) to (K extends Object, V extends Object ).
|
Stores a key-value pair in this multimap. |
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}. |
Collection<V> replaceValues(K, extends, Object, Iterable<?, extends, V>)
|
Change in signature from (K, Iterable<? extends V> ) to (K extends Object, Iterable<? extends V> ).
|
Stores a collection of values with the same key, replacing any existing values for that key. |
boolean putAll(K, extends, Object, Iterable<?, extends, V>)
|
Change in signature from (K, Iterable<? extends V> ) to (K extends Object, Iterable<? extends V> ).
|
Stores a key-value pair in this multimap for each of {@code values}, all using the same key,
{@code key}. |