- Type Parameters:
K
- the type of keys maintained by this mapV
- the type of mapped values
- All Superinterfaces:
Map<K,
V>
- All Known Subinterfaces:
ConcurrentNavigableMap<K,
V>
- All Known Implementing Classes:
ConcurrentHashMap
,ConcurrentSkipListMap
Map
providing thread safety and atomicity guarantees.
To maintain the specified guarantees, default implementations of
methods including putIfAbsent(K, V)
inherited from Map
must be overridden by implementations of this interface. Similarly,
implementations of the collections returned by methods Map.keySet()
, Map.values()
, and Map.entrySet()
must override
methods such as removeIf
when necessary to
preserve atomicity guarantees.
Memory consistency effects: As with other concurrent
collections, actions in a thread prior to placing an object into a
ConcurrentMap
as a key or value
happen-before
actions subsequent to the access or removal of that object from
the ConcurrentMap
in another thread.
This interface is a member of the Java Collections Framework.
- Since:
- 1.5
- Author:
- Doug Lea
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault V
default V
computeIfAbsent
(K key, Function<? super K, ? extends V> mappingFunction) default V
computeIfPresent
(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) default void
forEach
(BiConsumer<? super K, ? super V> action) default V
getOrDefault
(Object key, V defaultValue) default V
putIfAbsent
(K key, V value) If the specified key is not already associated with a value, associates it with the given value.boolean
Removes the entry for a key only if currently mapped to a given value.Replaces the entry for a key only if currently mapped to some value.boolean
Replaces the entry for a key only if currently mapped to a given value.default void
replaceAll
(BiFunction<? super K, ? super V, ? extends V> function)
-
Method Details
-
getOrDefault
- Specified by:
getOrDefault
in interfaceMap<K,
V> - Throws:
ClassCastException
NullPointerException
- Since:
- 1.8
- Implementation Note:
- This implementation assumes that the ConcurrentMap cannot
contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-
forEach
- Specified by:
forEach
in interfaceMap<K,
V> - Throws:
NullPointerException
- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to, for this
map
:for (Map.Entry<K,V> entry : map.entrySet()) { action.accept(entry.getKey(), entry.getValue()); }
- Implementation Note:
- The default implementation assumes that
IllegalStateException
thrown bygetKey()
orgetValue()
indicates that the entry has been removed and cannot be processed. Operation continues for subsequent entries.
-
putIfAbsent
If the specified key is not already associated with a value, associates it with the given value. This is equivalent to, for thismap
:if (!map.containsKey(key)) return map.put(key, value); else return map.get(key);
- Specified by:
putIfAbsent
in interfaceMap<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified key- Returns:
- the previous value associated with the specified key, or
null
if there was no mapping for the key. (Anull
return can also indicate that the map previously associatednull
with the key, if the implementation supports null values.) - Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapClassCastException
- if the class of the specified key or value prevents it from being stored in this mapNullPointerException
- if the specified key or value is null, and this map does not permit null keys or valuesIllegalArgumentException
- if some property of the specified key or value prevents it from being stored in this map- Implementation Note:
- This implementation intentionally re-abstracts the
inappropriate default provided in
Map
.
-
remove
Removes the entry for a key only if currently mapped to a given value. This is equivalent to, for thismap
:if (map.containsKey(key) && Objects.equals(map.get(key), value)) { map.remove(key); return true; } else { return false; }
- Specified by:
remove
in interfaceMap<K,
V> - Parameters:
key
- key with which the specified value is associatedvalue
- value expected to be associated with the specified key- Returns:
true
if the value was removed- Throws:
UnsupportedOperationException
- if theremove
operation is not supported by this mapClassCastException
- if the key or value is of an inappropriate type for this map (optional)NullPointerException
- if the specified key or value is null, and this map does not permit null keys or values (optional)- Implementation Note:
- This implementation intentionally re-abstracts the
inappropriate default provided in
Map
.
-
replace
Replaces the entry for a key only if currently mapped to a given value. This is equivalent to, for thismap
:if (map.containsKey(key) && Objects.equals(map.get(key), oldValue)) { map.put(key, newValue); return true; } else { return false; }
- Specified by:
replace
in interfaceMap<K,
V> - Parameters:
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 key- Returns:
true
if the value was replaced- Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapClassCastException
- if the class of a specified key or value prevents it from being stored in this mapNullPointerException
- if a specified key or value is null, and this map does not permit null keys or valuesIllegalArgumentException
- if some property of a specified key or value prevents it from being stored in this map- Implementation Note:
- This implementation intentionally re-abstracts the
inappropriate default provided in
Map
.
-
replace
Replaces the entry for a key only if currently mapped to some value. This is equivalent to, for thismap
:if (map.containsKey(key)) return map.put(key, value); else return null;
- Specified by:
replace
in interfaceMap<K,
V> - Parameters:
key
- key with which the specified value is associatedvalue
- value to be associated with the specified key- Returns:
- the previous value associated with the specified key, or
null
if there was no mapping for the key. (Anull
return can also indicate that the map previously associatednull
with the key, if the implementation supports null values.) - Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapClassCastException
- if the class of the specified key or value prevents it from being stored in this mapNullPointerException
- if the specified key or value is null, and this map does not permit null keys or valuesIllegalArgumentException
- if some property of the specified key or value prevents it from being stored in this map- Implementation Note:
- This implementation intentionally re-abstracts the
inappropriate default provided in
Map
.
-
replaceAll
- Specified by:
replaceAll
in interfaceMap<K,
V> - Throws:
UnsupportedOperationException
NullPointerException
ClassCastException
IllegalArgumentException
- Since:
- 1.8
- Implementation Requirements:
The default implementation is equivalent to, for this
map
:for (Map.Entry<K,V> entry : map.entrySet()) { K k; V v; do { k = entry.getKey(); v = entry.getValue(); } while (!map.replace(k, v, function.apply(k, v))); }
This implementation assumes that the ConcurrentMap cannot contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-
computeIfAbsent
- Specified by:
computeIfAbsent
in interfaceMap<K,
V> - Throws:
UnsupportedOperationException
ClassCastException
NullPointerException
IllegalArgumentException
- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to the following steps for this
map
:V oldValue, newValue; return ((oldValue = map.get(key)) == null && (newValue = mappingFunction.apply(key)) != null && (oldValue = map.putIfAbsent(key, newValue)) == null) ? newValue : oldValue;
This implementation assumes that the ConcurrentMap cannot contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-
computeIfPresent
- Specified by:
computeIfPresent
in interfaceMap<K,
V> - Throws:
UnsupportedOperationException
ClassCastException
NullPointerException
IllegalArgumentException
- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map
:for (V oldValue; (oldValue = map.get(key)) != null; ) { V newValue = remappingFunction.apply(key, oldValue); if ((newValue == null) ? map.remove(key, oldValue) : map.replace(key, oldValue, newValue)) return newValue; } return null;
This implementation assumes that the ConcurrentMap cannot contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-
compute
- Specified by:
compute
in interfaceMap<K,
V> - Throws:
UnsupportedOperationException
ClassCastException
NullPointerException
IllegalArgumentException
- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map
:for (;;) { V oldValue = map.get(key); V newValue = remappingFunction.apply(key, oldValue); if (newValue != null) { if ((oldValue != null) ? map.replace(key, oldValue, newValue) : map.putIfAbsent(key, newValue) == null) return newValue; } else if (oldValue == null || map.remove(key, oldValue)) { return null; } }
This implementation assumes that the ConcurrentMap cannot contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-
merge
- Specified by:
merge
in interfaceMap<K,
V> - Throws:
UnsupportedOperationException
ClassCastException
NullPointerException
IllegalArgumentException
- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map
:for (;;) { V oldValue = map.get(key); if (oldValue != null) { V newValue = remappingFunction.apply(oldValue, value); if (newValue != null) { if (map.replace(key, oldValue, newValue)) return newValue; } else if (map.remove(key, oldValue)) { return null; } } else if (map.putIfAbsent(key, value) == null) { return value; } }
This implementation assumes that the ConcurrentMap cannot contain null values and
get()
returning null unambiguously means the key is absent. Implementations which support null values must override this default implementation.
-