|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.google.common.collect.ImmutableMultimap<K,V>
public abstract class ImmutableMultimap<K,V>
An immutable Multimap
. Does not permit null keys or values.
Unlike Multimaps.unmodifiableMultimap(Multimap)
, which is
a view of a separate multimap which can still change, an instance of
ImmutableMultimap
contains its own data and will never
change. ImmutableMultimap
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 |
ImmutableMultimap.Builder<K,V>
A builder for creating immutable multimap instances, especially public static final multimaps ("constant multimaps"). |
Method Summary | ||
---|---|---|
ImmutableMap<K,Collection<V>> |
asMap()
Returns an immutable map that associates each key with its corresponding values in the multimap. |
|
static
|
builder()
Returns a new builder. |
|
void |
clear()
Guaranteed to throw an exception and leave the multimap unmodified. |
|
boolean |
containsEntry(Object key,
Object value)
Returns true if the multimap contains the specified key-value pair. |
|
boolean |
containsKey(Object key)
Returns true if the multimap contains any values for the specified
key. |
|
boolean |
containsValue(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 multimap containing the same mappings as multimap . |
|
ImmutableCollection<Map.Entry<K,V>> |
entries()
Returns an immutable collection of all key-value pairs in the multimap. |
|
boolean |
equals(Object object)
Indicates whether some other object is "equal to" this one. |
|
abstract ImmutableCollection<V> |
get(K key)
Returns an immutable collection of the values for the given key. |
|
int |
hashCode()
Returns a hash code value for the object. |
|
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 an 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,
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(Object key,
Object value)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
ImmutableCollection<V> |
removeAll(Object key)
Guaranteed to throw an exception and leave the multimap unmodified. |
|
ImmutableCollection<V> |
replaceValues(K key,
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. |
|
String |
toString()
Returns a string representation of the object. |
|
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 |
Method Detail |
---|
public static <K,V> ImmutableMultimap<K,V> of()
public static <K,V> ImmutableMultimap<K,V> of(K k1, V v1)
public static <K,V> ImmutableMultimap<K,V> of(K k1, V v1, K k2, V v2)
public static <K,V> ImmutableMultimap<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3)
public static <K,V> ImmutableMultimap<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
public static <K,V> ImmutableMultimap<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
public static <K,V> ImmutableMultimap.Builder<K,V> builder()
ImmutableMultimap.Builder
constructor.
public static <K,V> ImmutableMultimap<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 ImmutableMultimap
, no copy will actually be
performed, and the given multimap itself will be returned.
NullPointerException
- if any key or value in multimap
is
nullpublic ImmutableCollection<V> removeAll(Object key)
removeAll
in interface Multimap<K,V>
key
- key of entries to remove from the multimap
UnsupportedOperationException
- alwayspublic ImmutableCollection<V> replaceValues(K key, Iterable<? extends V> values)
replaceValues
in interface Multimap<K,V>
key
- key to store in the multimapvalues
- values to store in the multimap
UnsupportedOperationException
- alwayspublic void clear()
clear
in interface Multimap<K,V>
UnsupportedOperationException
- alwayspublic abstract ImmutableCollection<V> get(K key)
get
in interface Multimap<K,V>
key
- key to search for in multimap
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
UnsupportedOperationException
- alwayspublic boolean putAll(K key, 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
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
UnsupportedOperationException
- alwayspublic boolean remove(Object key, 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
UnsupportedOperationException
- alwayspublic boolean containsEntry(@Nullable Object key, @Nullable Object value)
Multimap
true
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 multimappublic boolean containsKey(@Nullable Object key)
Multimap
true
if the multimap contains any values for the specified
key.
containsKey
in interface Multimap<K,V>
key
- key to search for in multimappublic boolean containsValue(@Nullable Object value)
Multimap
true
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()
Multimap
true
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 Object object)
java.lang.Object
The equals
method implements an equivalence relation
on non-null object references:
x
, x.equals(x)
should return
true
.
x
and y
, x.equals(y)
should return true
if and only if
y.equals(x)
returns true
.
x
, y
, and z
, if
x.equals(y)
returns true
and
y.equals(z)
returns true
, then
x.equals(z)
should return true
.
x
and y
, multiple invocations of
x.equals(y)
consistently return true
or consistently return false
, provided no
information used in equals
comparisons on the
objects is modified.
x
,
x.equals(null)
should return false
.
The equals
method for class Object
implements
the most discriminating possible equivalence relation on objects;
that is, for any non-null reference values x
and
y
, this method returns true
if and only
if x
and y
refer to the same object
(x == y
has the value true
).
Note that it is generally necessary to override the hashCode
method whenever this method is overridden, so as to maintain the
general contract for the hashCode
method, which states
that equal objects must have equal hash codes.
equals
in interface Multimap<K,V>
equals
in class Object
object
- the reference object with which to compare.
true
if this object is the same as the obj
argument; false
otherwise.Object.hashCode()
,
HashMap
public int hashCode()
java.lang.Object
HashMap
.
The general contract of hashCode
is:
hashCode
method
must consistently return the same integer, provided no information
used in equals
comparisons on the object is modified.
This integer need not remain consistent from one execution of an
application to another execution of the same application.
equals(Object)
method, then calling the hashCode
method on each of
the two objects must produce the same integer result.
Object.equals(java.lang.Object)
method, then calling the hashCode
method on each of the
two objects must produce distinct integer results. However, the
programmer should be aware that producing distinct integer results
for unequal objects may improve the performance of hash tables.
As much as is reasonably practical, the hashCode method defined by
class Object
does return distinct integers for distinct
objects. (This is typically implemented by converting the internal
address of the object into an integer, but this implementation
technique is not required by the
JavaTM programming language.)
hashCode
in interface Multimap<K,V>
hashCode
in class Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
public String toString()
java.lang.Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString
in class Object
public ImmutableSet<K> keySet()
keySet
in interface Multimap<K,V>
public ImmutableMap<K,Collection<V>> asMap()
asMap
in interface Multimap<K,V>
public ImmutableCollection<Map.Entry<K,V>> entries()
entries
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 |