Changed Methods |
Map<K, Collection<V>> asMap()
|
Changed from non-abstract to abstract.
|
Returns a map view that associates each key with the corresponding values
in the multimap. |
SortedSet<V> get(K )
|
Changed from non-abstract to abstract.
|
Returns a collection view of all values associated with a key. |
SortedSet<V> removeAll(Object )
|
Changed from non-abstract to abstract.
|
Removes all values associated with a given key. |
SortedSet<V> replaceValues(K, Iterable<?, extends, V>)
|
Changed from non-abstract to abstract.
|
Stores a collection of values with the same key, replacing any existing
values for that key. |
Comparator<? super V> valueComparator()
|
Changed from non-abstract to abstract.
|
Returns the comparator that orders the multimap values, with {@code null}
indicating that natural ordering is used. |