Generated by
JDiff

Interface com.google.common.collect.Multimap

Changed Methods
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.
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}.