private static class Multimaps.UnmodifiableSetMultimap<K,V> extends Multimaps.UnmodifiableMultimap<K,V> implements SetMultimap<K,V>
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
UnmodifiableSetMultimap(SetMultimap<K,V> delegate) |
| Modifier and Type | Method and Description |
|---|---|
SetMultimap<K,V> |
delegate()
Returns the backing delegate instance that methods are forwarded to.
|
java.util.Set<java.util.Map.Entry<K,V>> |
entries()
Returns a view collection of all key-value pairs contained in this
multimap, as
Map.Entry instances. |
java.util.Set<V> |
get(K key)
Returns a view collection of the values associated with
key in this
multimap, if any. |
java.util.Set<V> |
removeAll(java.lang.Object key)
Removes all values associated with the key
key. |
java.util.Set<V> |
replaceValues(K key,
java.lang.Iterable<? extends V> values)
Stores a collection of values with the same key, replacing any existing
values for that key.
|
asMap, clear, keys, keySet, put, putAll, putAll, remove, valuescontainsEntry, containsKey, containsValue, equals, hashCode, isEmpty, sizetoStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitasMap, equalsclear, containsEntry, containsKey, containsValue, hashCode, isEmpty, keys, keySet, put, putAll, putAll, remove, size, valuesprivate static final long serialVersionUID
UnmodifiableSetMultimap(SetMultimap<K,V> delegate)
public SetMultimap<K,V> delegate()
ForwardingObjectForwardingSet.delegate(). Concrete subclasses override this method to supply
the instance being decorated.delegate in class Multimaps.UnmodifiableMultimap<K,V>public java.util.Set<V> get(K key)
Multimapkey in this
multimap, if any. Note that when containsKey(key) is false, this
returns an empty collection, not null.
Changes to the returned collection will update the underlying multimap, and vice versa.
public java.util.Set<java.util.Map.Entry<K,V>> entries()
MultimapMap.Entry instances.
Changes to the returned collection or the entries it contains will update the underlying multimap, and vice versa. However, adding to the returned collection is not possible.
public java.util.Set<V> removeAll(java.lang.Object key)
Multimapkey.
Once this method returns, key will not be mapped to any values,
so it will not appear in Multimap.keySet(), Multimap.asMap(), or any other
views.
removeAll in interface Multimap<K,V>removeAll in interface SetMultimap<K,V>removeAll in class Multimaps.UnmodifiableMultimap<K,V>public java.util.Set<V> replaceValues(K key, java.lang.Iterable<? extends V> values)
MultimapIf values is empty, this is equivalent to
removeAll(key).
replaceValues in interface Multimap<K,V>replaceValues in interface SetMultimap<K,V>replaceValues in class Multimaps.UnmodifiableMultimap<K,V>