|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.google.common.collect.ImmutableSetMultimap<K,V>
public class ImmutableSetMultimap<K,V>
An immutable SetMultimap with reliable user-specified key and value
iteration order. Does not permit null keys or values.
Unlike Multimaps.unmodifiableSetMultimap(SetMultimap), which is
a view of a separate multimap which can still change, an instance of
ImmutableSetMultimap contains its own data and will never
change. ImmutableSetMultimap is convenient for
public static final multimaps ("constant multimaps") and also lets
you easily make a "defensive copy" of a multimap provided to your class by
a caller.
Note: Although this class is not final, it cannot be subclassed as it has no public or protected constructors. Thus, instances of this class are guaranteed to be immutable.
| Nested Class Summary | |
|---|---|
static class |
ImmutableSetMultimap.Builder<K,V>
|
| Method Summary | ||
|---|---|---|
ImmutableMap<K,java.util.Collection<V>> |
asMap()
Returns an immutable map that associates each key with its corresponding values in the multimap. |
|
static
|
builder()
Returns a new ImmutableSetMultimap.Builder. |
|
void |
clear()
Guaranteed to throw an exception and leave the multimap unmodified. |
|
boolean |
containsEntry(java.lang.Object key,
java.lang.Object value)
Returns true if the multimap contains the specified key-value pair. |
|
boolean |
containsKey(java.lang.Object key)
Returns true if the multimap contains any values for the specified
key. |
|
boolean |
containsValue(java.lang.Object value)
Returns true if the multimap contains the specified value for any
key. |
|
static
|
copyOf(Multimap<? extends K,? extends V> multimap)
Returns an immutable set multimap containing the same mappings as multimap. |
|
ImmutableSet<java.util.Map.Entry<K,V>> |
entries()
Returns an immutable collection of all key-value pairs in the multimap. |
|
boolean |
equals(java.lang.Object object)
Compares the specified object with this multimap for equality. |
|
ImmutableSet<V> |
get(K key)
Returns an immutable set of the values for the given key. |
|
int |
hashCode()
Returns the hash code for this multimap. |
|
boolean |
isEmpty()
Returns true if the multimap contains no key-value pairs. |
|
ImmutableMultiset<K> |
keys()
Returns a collection, which may contain duplicates, of all keys. |
|
ImmutableSet<K> |
keySet()
Returns an immutable set of the distinct keys in this multimap. |
|
static
|
of()
Returns the empty multimap. |
|
static
|
of(K k1,
V v1)
Returns an immutable multimap containing a single entry. |
|
static
|
of(K k1,
V v1,
K k2,
V v2)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
Returns an immutable multimap containing the given entries, in order. |
|
static
|
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
Returns an immutable multimap containing the given entries, in order. |
|
boolean |
put(K key,
V value)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
boolean |
putAll(K key,
java.lang.Iterable<? extends V> values)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
boolean |
putAll(Multimap<? extends K,? extends V> multimap)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
boolean |
remove(java.lang.Object key,
java.lang.Object value)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
C |
removeAll(java.lang.Object key)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
C |
replaceValues(K key,
java.lang.Iterable<? extends V> values)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
int |
size()
Returns the number of key-value pairs in the multimap. |
|
java.lang.String |
toString()
|
|
ImmutableCollection<V> |
values()
Returns an immutable collection of the values in this multimap. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface com.google.common.collect.SetMultimap |
|---|
asMap, equals, removeAll, replaceValues |
| Methods inherited from interface com.google.common.collect.Multimap |
|---|
clear, containsEntry, containsKey, containsValue, hashCode, isEmpty, keys, keySet, put, putAll, putAll, remove, size, values |
| Method Detail |
|---|
public static <K,V> ImmutableSetMultimap<K,V> of()
public static <K,V> ImmutableSetMultimap<K,V> of(K k1,
V v1)
public static <K,V> ImmutableSetMultimap<K,V> of(K k1,
V v1,
K k2,
V v2)
java.lang.IllegalArgumentException - if duplicate key-value pairs are provided
public static <K,V> ImmutableSetMultimap<K,V> of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
java.lang.IllegalArgumentException - if duplicate key-value pairs are provided
public static <K,V> ImmutableSetMultimap<K,V> of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
java.lang.IllegalArgumentException - if duplicate key-value pairs are provided
public static <K,V> ImmutableSetMultimap<K,V> of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
java.lang.IllegalArgumentException - if duplicate key-value pairs are providedpublic static <K,V> ImmutableSetMultimap.Builder<K,V> builder()
ImmutableSetMultimap.Builder.
public static <K,V> ImmutableSetMultimap<K,V> copyOf(Multimap<? extends K,? extends V> multimap)
multimap. The generated multimap's key and value orderings
correspond to the iteration ordering of the multimap.asMap() view.
Note: Despite what the method name suggests, if
multimap is an ImmutableSetMultimap, no copy will actually
be performed, and the given multimap itself will be returned.
java.lang.NullPointerException - if any key or value in multimap is
null
java.lang.IllegalArgumentException - if multimap contains any duplicate
key-value pairs
public ImmutableSet<V> get(@Nullable
K key)
get in interface Multimap<K,V>get in interface SetMultimap<K,V>key - key to search for in multimap
public ImmutableSet<java.util.Map.Entry<K,V>> entries()
entries in interface Multimap<K,V>entries in interface SetMultimap<K,V>public C removeAll(java.lang.Object key)
removeAll in interface Multimap<K,V>key - key of entries to remove from the multimap
java.lang.UnsupportedOperationException - always
public C replaceValues(K key,
java.lang.Iterable<? extends V> values)
replaceValues in interface Multimap<K,V>key - key to store in the multimapvalues - values to store in the multimap
java.lang.UnsupportedOperationException - alwayspublic void clear()
clear in interface Multimap<K,V>java.lang.UnsupportedOperationException - always
public boolean put(K key,
V value)
put in interface Multimap<K,V>key - key to store in the multimapvalue - value to store in the multimap
true if the method increased the size of the multimap, or
false if the multimap already contained the key-value pair and
doesn't allow duplicates
java.lang.UnsupportedOperationException - always
public boolean putAll(K key,
java.lang.Iterable<? extends V> values)
putAll in interface Multimap<K,V>key - key to store in the multimapvalues - values to store in the multimap
true if the multimap changed
java.lang.UnsupportedOperationException - alwayspublic boolean putAll(Multimap<? extends K,? extends V> multimap)
putAll in interface Multimap<K,V>multimap - mappings to store in this multimap
true if the multimap changed
java.lang.UnsupportedOperationException - always
public boolean remove(java.lang.Object key,
java.lang.Object value)
remove in interface Multimap<K,V>key - key of entry to remove from the multimapvalue - value of entry to remove the multimap
true if the multimap changed
java.lang.UnsupportedOperationException - always
public boolean containsEntry(@Nullable
java.lang.Object key,
@Nullable
java.lang.Object value)
Multimaptrue if the multimap contains the specified key-value pair.
containsEntry in interface Multimap<K,V>key - key to search for in multimapvalue - value to search for in multimap
public boolean containsKey(@Nullable
java.lang.Object key)
Multimaptrue if the multimap contains any values for the specified
key.
containsKey in interface Multimap<K,V>key - key to search for in multimap
public boolean containsValue(@Nullable
java.lang.Object value)
Multimaptrue if the multimap contains the specified value for any
key.
containsValue in interface Multimap<K,V>value - value to search for in multimappublic boolean isEmpty()
Multimaptrue if the multimap contains no key-value pairs.
isEmpty in interface Multimap<K,V>public int size()
Multimap
size in interface Multimap<K,V>
public boolean equals(@Nullable
java.lang.Object object)
MultimapMultimap.asMap(),
are also equal.
In general, two multimaps with identical key-value mappings may or may
not be equal, depending on the implementation. For example, two
SetMultimap instances with the same key-value mappings are equal,
but equality of two ListMultimap instances depends on the ordering
of the values for each key.
A non-empty SetMultimap cannot be equal to a non-empty
ListMultimap, since their Multimap.asMap() views contain unequal
collections as values. However, any two empty multimaps are equal, because
they both have empty Multimap.asMap() views.
equals in interface Multimap<K,V>equals in class java.lang.Objectpublic int hashCode()
MultimapThe hash code of a multimap is defined as the hash code of the map view,
as returned by Multimap.asMap().
hashCode in interface Multimap<K,V>hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic ImmutableSet<K> keySet()
keySet in interface Multimap<K,V>public ImmutableMap<K,java.util.Collection<V>> asMap()
asMap in interface Multimap<K,V>public ImmutableMultiset<K> keys()
keys in interface Multimap<K,V>public ImmutableCollection<V> values()
values in interface Multimap<K,V>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||