public final class Maps extends Object
Map
interface
and, in addition, the JEP 269
"Unmodifiable Map Static Factory Methods"
in the Map
interface that were introduced in Java 9.
The Maps.of
,
Maps.ofEntries
, and
Maps.copyOf
static factory methods provide a convenient way to create unmodifiable maps.
The Map
instances created by these methods have the following characteristics:
UnsupportedOperationException
to be thrown.
However, if the contained keys or values are themselves mutable, this may cause
the Map to behave inconsistently or its contents to appear to change.
null
keys and values. Attempts to create them with
null
keys or values result in NullPointerException
.
IllegalArgumentException
.
==
), identity hash code, and synchronization) are unreliable and
should be avoided.
Modifier and Type | Class and Description |
---|---|
static class |
Maps.Entry
A place for the static interface methods of the Java 8
Map.Entry
interface. |
Modifier and Type | Method and Description |
---|---|
static <K,V> V |
compute(Map<K,V> map,
K key,
BiFunction<? super K,? super V,? extends V> remappingFunction)
Attempts to compute a mapping for the specified key and its current
mapped value (or
null if there is no current mapping). |
static <K,V> V |
computeIfAbsent(Map<K,V> map,
K key,
Function<? super K,? extends V> mappingFunction)
If the specified key is not already associated with a value (or is mapped
to
null ), attempts to compute its value using the given mapping
function and enters it into the passed map unless null . |
static <K,V> V |
computeIfPresent(Map<K,V> map,
K key,
BiFunction<? super K,? super V,? extends V> remappingFunction)
If the value for the specified key is present and non-null, attempts to
compute a new mapping given the key and its current mapped value.
|
static <K,V> Map<K,V> |
copyOf(Map<? extends K,? extends V> map)
Returns an unmodifiable Map containing the entries
of the given Map.
|
static <K,V> Map.Entry<K,V> |
entry(K k,
V v)
Returns an unmodifiable
Maps.Entry containing the given key and value. |
static <K,V> void |
forEach(Map<K,V> map,
BiConsumer<? super K,? super V> action)
Performs the given action for each entry in the map until all entries
have been processed or the action throws an exception.
|
static <K,V> V |
getOrDefault(Map<K,V> map,
Object key,
V defaultValue)
Returns the value to which the specified key is mapped, or
defaultValue if the map contains no mapping for the key. |
static <K,V> V |
merge(Map<K,V> map,
K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction)
If the specified key is not already associated with a value or is
associated with null, associates it with the given non-null value.
|
static <K,V> Map<K,V> |
of()
Returns an unmodifiable map containing zero mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1)
Returns an unmodifiable map containing a single mapping.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2)
Returns an unmodifiable map containing two mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3)
Returns an unmodifiable map containing three mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4)
Returns an unmodifiable map containing four mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5)
Returns an unmodifiable map containing five mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6)
Returns an unmodifiable map containing six mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7)
Returns an unmodifiable map containing seven mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7,
K k8,
V v8)
Returns an unmodifiable map containing eight mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7,
K k8,
V v8,
K k9,
V v9)
Returns an unmodifiable map containing nine mappings.
|
static <K,V> Map<K,V> |
of(K k1,
V v1,
K k2,
V v2,
K k3,
V v3,
K k4,
V v4,
K k5,
V v5,
K k6,
V v6,
K k7,
V v7,
K k8,
V v8,
K k9,
V v9,
K k10,
V v10)
Returns an unmodifiable map containing ten mappings.
|
static <K,V> Map<K,V> |
ofEntries(Map.Entry<? extends K,? extends V>... entries)
Returns an unmodifiable map containing keys and values extracted from the given entries.
|
static <K,V> V |
putIfAbsent(Map<K,V> map,
K key,
V value)
If the specified key is not already associated with a value (or is mapped
to
null ) associates it with the given value and returns
null , else returns the current value. |
static <K,V> boolean |
remove(Map<K,V> map,
Object key,
Object value)
Removes the entry for the specified key only if it is currently
mapped to the specified value.
|
static <K,V> V |
replace(Map<K,V> map,
K key,
V value)
Replaces the entry for the specified key only if it is
currently mapped to some value.
|
static <K,V> boolean |
replace(Map<K,V> map,
K key,
V oldValue,
V newValue)
Replaces the entry for the specified key only if currently
mapped to the specified value.
|
static <K,V> void |
replaceAll(Map<K,V> map,
BiFunction<? super K,? super V,? extends V> function)
Replaces each entry's value with the result of invoking the given
function on that entry until all entries have been processed or the
function throws an exception.
|
public static <K,V> V putIfAbsent(Map<K,V> map, K key, V value)
null
) associates it with the given value and returns
null
, else returns the current value.
Implementation Requirements:
The default implementation is equivalent to, for the map
:
V v = map.get(key);
if (v == null)
v = map.put(key, value);
return v;
The default implementation makes no guarantees about synchronization or atomicity properties of this method. Any implementation providing atomicity guarantees must override this method and document its concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the putIfAbsent
operation.key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keynull
if there was no mapping for the key.
(A null
return can also indicate that the map
previously associated null
with the key,
if the implementation supports null values.)UnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the key or value is of an inappropriate
type for the map (optional)NullPointerException
- if the specified key or value is null,
and the map does not permit null keys or values (optional)IllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in the map (optional)public static <K,V> V getOrDefault(Map<K,V> map, Object key, V defaultValue)
defaultValue
if the map contains no mapping for the key.
Implementation Requirements:
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the getOrDefault
operation.key
- the key whose associated value is to be returneddefaultValue
- the default mapping of the keydefaultValue
if the map contains no mapping for the keyClassCastException
- if the key is of an inappropriate type for
the map (optional)NullPointerException
- if the specified key is null and the map
does not permit null keys (optional)public static <K,V> void forEach(Map<K,V> map, BiConsumer<? super K,? super V> action)
Implementation Requirements:
The default implementation is equivalent to, for the map
:
for (Map.Entry<K, V> entry : map.entrySet())
action.accept(entry.getKey(), entry.getValue());
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties.K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the forEach
operation.action
- The action to be performed for each entryNullPointerException
- if the specified map or action is nullConcurrentModificationException
- if an entry is found to be
removed during iterationpublic static <K,V> V merge(Map<K,V> map, K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
null
. This
method may be of use when combining multiple mapped values for a key.
For example, to either create or append a String msg
to a
value mapping:
map.merge(key, msg, String::concat)
If the remapping function returns null
the mapping is removed.
If the remapping function itself throws an (unchecked) exception, the
exception is rethrown, and the current mapping is left unchanged.
The remapping function itself should not modify the passed map during computation.
Implementation Requirements:
The default implementation is equivalent to performing the following
steps for the map
, then returning the current value or
null
if absent:
V oldValue = map.get(key);
V newValue = (oldValue == null) ? value :
remappingFunction.apply(oldValue, value);
if (newValue == null)
map.remove(key);
else
map.put(key, newValue);
The default implementation makes no guarantees about detecting if the
remapping function modifies the passed map during computation and, if
appropriate, reporting an error. Non-concurrent implementations should
override this method and, on a best-effort basis, throw a
ConcurrentModificationException
if it is detected that the
remapping function modifies the map during computation. Concurrent
implementations should override this method and, on a best-effort basis,
throw an IllegalStateException
if it is detected that the
remapping function modifies the map during computation and as a result
computation would never complete.
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties. In particular, all implementations of
subinterface ConcurrentMap
must document
whether the remapping function is applied once atomically only if the
value is not present.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the merge
operation.key
- key with which the resulting value is to be associatedvalue
- the non-null value to be merged with the existing value
associated with the key or, if no existing value or a null value
is associated with the key, to be associated with the keyremappingFunction
- the remapping function to recompute a value if presentUnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in the map (optional)NullPointerException
- if the specified key is null and the map
does not support null keys or the value or remappingFunction is
nullIllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in the map (optional)public static <K,V> V computeIfAbsent(Map<K,V> map, K key, Function<? super K,? extends V> mappingFunction)
null
), attempts to compute its value using the given mapping
function and enters it into the passed map
unless null
.
If the mapping function returns null
no mapping is recorded.
If the mapping function itself throws an (unchecked) exception, the
exception is rethrown, and no mapping is recorded. The most
common usage is to construct a new object serving as an initial
mapped value or memoized result, as in:
map.computeIfAbsent(key, k -> new Value(f(k)));
Or to implement a multi-value map, Map<K,Collection<V>>
,
supporting multiple values per key:
map.computeIfAbsent(key, k -> new HashSet<V>()).add(v);
The mapping function itself should not modify the passed map during computation.
Implementation Requirements:
The default implementation is equivalent to the following steps for the
map
, then returning the current value or null
if now
absent:
if (map.get(key) == null) {
V newValue = mappingFunction.apply(key);
if (newValue != null)
map.put(key, newValue);
}
The default implementation makes no guarantees about detecting if the
mapping function modifies the passed map during computation and, if
appropriate, reporting an error. Non-concurrent implementations should
override this method and, on a best-effort basis, throw a
ConcurrentModificationException
if it is detected that the
mapping function modifies the map during computation. Concurrent
implementations should override this method and, on a best-effort basis,
throw an IllegalStateException
if it is detected that the
mapping function modifies the map during computation and as a result
computation would never complete.
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties. In particular, all implementations of
subinterface ConcurrentMap
must document
whether the mapping function is applied once atomically only if the value
is not present.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the computeIfAbsent
operation.key
- key with which the specified value is to be associatedmappingFunction
- the mapping function to compute a valueNullPointerException
- if the specified key is null and
the map does not support null keys, or the mappingFunction
is nullUnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in the map (optional)IllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in the map (optional)public static <K,V> boolean replace(Map<K,V> map, K key, V oldValue, V newValue)
Implementation Requirements:
The default implementation is equivalent to, for the map
:
if (map.containsKey(key) && Objects.equals(map.get(key), value)) {
map.put(key, newValue);
return true;
} else
return false;
The default implementation does not throw NullPointerException
for maps that do not support null values if oldValue is null unless
newValue is also null.
The default implementation makes no guarantees about synchronization or atomicity properties of this method. Any implementation providing atomicity guarantees must override this method and document its concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the replace
operation.key
- key with which the specified value is associatedoldValue
- value expected to be associated with the specified keynewValue
- value to be associated with the specified keytrue
if the value was replacedUnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of a specified key or value
prevents it from being stored in the mapNullPointerException
- if a specified key or newValue is null,
and the map does not permit null keys or valuesNullPointerException
- if oldValue is null and the map does not
permit null values (optional)IllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in the mappublic static <K,V> V replace(Map<K,V> map, K key, V value)
Implementation Requirements:
The default implementation is equivalent to, for the map
:
if (map.containsKey(key)) {
return map.put(key, value);
} else
return null;
The default implementation makes no guarantees about synchronization or atomicity properties of this method. Any implementation providing atomicity guarantees must override this method and document its concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the replace
operation.key
- key with which the specified value is associatedvalue
- value to be associated with the specified keynull
if there was no mapping for the key.
(A null
return can also indicate that the map
previously associated null
with the key,
if the implementation supports null values.)UnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in the map (optional)NullPointerException
- if the specified key or value is null,
and the map does not permit null keys or valuesIllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in the mappublic static <K,V> void replaceAll(Map<K,V> map, BiFunction<? super K,? super V,? extends V> function)
Implementation Requirements:
The default implementation is equivalent to, for the map
:
for (Map.Entry<K, V> entry : map.entrySet())
entry.setValue(function.apply(entry.getKey(), entry.getValue()));
The default implementation makes no guarantees about synchronization or atomicity properties of this method. Any implementation providing atomicity guarantees must override this method and document its concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the replaceAll
operation.function
- the function to apply to each entryUnsupportedOperationException
- if the set
operation
is not supported by the map's entry set iterator.ClassCastException
- if the class of a replacement value
prevents it from being stored in the mapNullPointerException
- if the specified function is null, or the
specified replacement value is null, and the map does not permit null
valuesClassCastException
- if a replacement value is of an inappropriate
type for the map (optional)NullPointerException
- if function or a replacement value is null,
and the map does not permit null keys or values (optional)IllegalArgumentException
- if some property of a replacement value
prevents it from being stored in the map (optional)ConcurrentModificationException
- if an entry is found to be
removed during iterationpublic static <K,V> V compute(Map<K,V> map, K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
null
if there is no current mapping). For
example, to either create or append a String
msg to a value
mapping:
map.compute(key, (k, v) -> (v == null) ? msg : v.concat(msg))
(Method merge()
is often simpler to use for such purposes.)
If the remapping function returns null
, the mapping is removed
(or remains absent if initially absent). If the remapping function itself
throws an (unchecked) exception, the exception is rethrown, and the current
mapping is left unchanged.
The remapping function itself should not modify the passed map during computation.
Implementation Requirements:
The default implementation is equivalent to performing the following
steps for the map
, then returning the current value or
null
if absent:
V oldValue = map.get(key);
V newValue = remappingFunction.apply(key, oldValue);
if (oldValue != null ) {
if (newValue != null)
map.put(key, newValue);
else
map.remove(key);
} else {
if (newValue != null)
map.put(key, newValue);
else
return null;
}
The default implementation makes no guarantees about detecting if the
remapping function modifies the passed map during computation and, if
appropriate, reporting an error. Non-concurrent implementations should
override this method and, on a best-effort basis, throw a
ConcurrentModificationException
if it is detected that the
remapping function modifies the map during computation. Concurrent
implementations should override this method and, on a best-effort basis,
throw an IllegalStateException
if it is detected that the
remapping function modifies the map during computation and as a result
computation would never complete.
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties. In particular, all implementations of
subinterface ConcurrentMap
must document
whether the remapping function is applied once atomically only if the
value is not present.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the compute
operation.key
- key with which the specified value is to be associatedremappingFunction
- the remapping function to compute a valueNullPointerException
- if the specified key is null and
the map does not support null keys, or the
remappingFunction is nullUnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in the map (optional)IllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in this map (optional)public static <K,V> V computeIfPresent(Map<K,V> map, K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
If the remapping function returns null
, the mapping is removed.
If the remapping function itself throws an (unchecked) exception, the
exception is rethrown, and the current mapping is left unchanged.
The remapping function itself should not modify the passed map during computation.
Implementation Requirements:
The default implementation is equivalent to performing the following
steps for the map
, then returning the current value or
null
if now absent:
if (map.get(key) != null) {
V oldValue = map.get(key);
V newValue = remappingFunction.apply(key, oldValue);
if (newValue != null)
map.put(key, newValue);
else
map.remove(key);
}
The default implementation makes no guarantees about detecting if the
remapping function modifies the passed map during computation and, if
appropriate, reporting an error. Non-concurrent implementations should
override this method and, on a best-effort basis, throw a
ConcurrentModificationException
if it is detected that the
remapping function modifies the map during computation. Concurrent
implementations should override this method and, on a best-effort basis,
throw an IllegalStateException
if it is detected that the
remapping function modifies the map during computation and as a result
computation would never complete.
The default implementation makes no guarantees about synchronization
or atomicity properties of this method. Any implementation providing
atomicity guarantees must override this method and document its
concurrency properties. In particular, all implementations of
subinterface ConcurrentMap
must document
whether the remapping function is applied once atomically only if the
value is not present.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the computeIfPresent
operation.key
- key with which the specified value is to be associatedremappingFunction
- the remapping function to compute a valueNullPointerException
- if the specified key is null and
the map does not support null keys, or the
remappingFunction is nullUnsupportedOperationException
- if the put
operation
is not supported by the map (optional)ClassCastException
- if the class of the specified key or value
prevents it from being stored in the map (optional)IllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in this map (optional)public static <K,V> boolean remove(Map<K,V> map, Object key, Object value)
Implementation Requirements:
The default implementation is equivalent to, for the map
:
if (map.containsKey(key) && Objects.equals(map.get(key), value)) {
map.remove(key);
return true;
} else
return false;
The default implementation makes no guarantees about synchronization or atomicity properties of this method. Any implementation providing atomicity guarantees must override this method and document its concurrency properties.
K
- the type of keys maintained by the passed mapV
- the type of mapped values in the passed mapmap
- the Map
on which to execute the remove
operation.key
- key with which the specified value is associatedvalue
- value expected to be associated with the specified keytrue
if the value was removedUnsupportedOperationException
- if the remove
operation
is not supported by the map (optional)ClassCastException
- if the key or value is of an inappropriate
type for the map (optional)NullPointerException
- if the specified key or value is null,
and the map does not permit null keys or values (optional)public static <K,V> Map<K,V> of()
K
- the Map
's key typeV
- the Map
's value typeMap
public static <K,V> Map<K,V> of(K k1, V v1)
K
- the Map
's key typeV
- the Map
's value typek1
- the mapping's keyv1
- the mapping's valueMap
containing the specified mappingNullPointerException
- if the key or the value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if the keys are duplicatesNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valuek6
- the sixth mapping's keyv6
- the sixth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valuek6
- the sixth mapping's keyv6
- the sixth mapping's valuek7
- the seventh mapping's keyv7
- the seventh mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valuek6
- the sixth mapping's keyv6
- the sixth mapping's valuek7
- the seventh mapping's keyv7
- the seventh mapping's valuek8
- the eighth mapping's keyv8
- the eighth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valuek6
- the sixth mapping's keyv6
- the sixth mapping's valuek7
- the seventh mapping's keyv7
- the seventh mapping's valuek8
- the eighth mapping's keyv8
- the eighth mapping's valuek9
- the ninth mapping's keyv9
- the ninth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9, K k10, V v10)
K
- the Map
's key typeV
- the Map
's value typek1
- the first mapping's keyv1
- the first mapping's valuek2
- the second mapping's keyv2
- the second mapping's valuek3
- the third mapping's keyv3
- the third mapping's valuek4
- the fourth mapping's keyv4
- the fourth mapping's valuek5
- the fifth mapping's keyv5
- the fifth mapping's valuek6
- the sixth mapping's keyv6
- the sixth mapping's valuek7
- the seventh mapping's keyv7
- the seventh mapping's valuek8
- the eighth mapping's keyv8
- the eighth mapping's valuek9
- the ninth mapping's keyv9
- the ninth mapping's valuek10
- the tenth mapping's keyv10
- the tenth mapping's valueMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any key or value is null
public static <K,V> Map<K,V> ofEntries(Map.Entry<? extends K,? extends V>... entries)
API Note:
It is convenient to create the map entries using the Maps.entry()
method.
For example,
import static java.util.Maps.entry;
Map<Integer,String> map = Maps.ofEntries(
entry(1, "a"),
entry(2, "b"),
entry(3, "c"),
...
entry(26, "z"));
K
- the Map
's key typeV
- the Map
's value typeentries
- Map.Entry
s containing the keys and values from which the map is populatedMap
containing the specified mappingsIllegalArgumentException
- if there are any duplicate keysNullPointerException
- if any entry, key, or value is null
, or if
the entries
array is null
Maps.entry()
public static <K,V> Map.Entry<K,V> entry(K k, V v)
Maps.Entry
containing the given key and value.
These entries are suitable for populating Map
instances using the
Maps.ofEntries()
method.
The Entry
instances created by this method have the following characteristics:
null
keys and values. Attempts to create them using a null
key or value result in NullPointerException
.
Entry.setValue()
on a returned Entry
result in UnsupportedOperationException
.
==
),
identity hash code, and synchronization) are unreliable and should be avoided.
API Note:
For a serializable Entry
, see AbstractMap.SimpleEntry
or
AbstractMap.SimpleImmutableEntry
.
K
- the key's typeV
- the value's typek
- the keyv
- the valueEntry
containing the specified key and valueNullPointerException
- if the key or value is null
Maps.ofEntries()
public static <K,V> Map<K,V> copyOf(Map<? extends K,? extends V> map)
Implementation Note: If the given Map is an unmodifiable Map, calling copyOf will generally not create a copy.
K
- the Map
's key typeV
- the Map
's value typemap
- the map from which entries are drawn, must be non-nullMap
containing the entries of the given Map
NullPointerException
- if map is null, or if it contains any null keys or valuesCopyright © 2018. All rights reserved.