- 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 Vdefault VcomputeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) default VcomputeIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) default voidforEach(BiConsumer<? super K, ? super V> action) default VgetOrDefault(Object key, V defaultValue) default VputIfAbsent(K key, V value) If the specified key is not already associated with a value, associates it with the given value.booleanRemoves 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.booleanReplaces the entry for a key only if currently mapped to a given value.default voidreplaceAll(BiFunction<? super K, ? super V, ? extends V> function)
-
Method Details
-
getOrDefault
- Specified by:
getOrDefaultin interfaceMap<K,V> - Throws:
ClassCastExceptionNullPointerException- 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:
forEachin 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
IllegalStateExceptionthrown 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:
except that the action is performed atomically.if (!map.containsKey(key)) return map.put(key, value); else return map.get(key);- Specified by:
putIfAbsentin 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
nullif there was no mapping for the key. (Anullreturn can also indicate that the map previously associatednullwith the key, if the implementation supports null values.) - Throws:
UnsupportedOperationException- if theputoperation 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:
except that the action is performed atomically.if (map.containsKey(key) && Objects.equals(map.get(key), value)) { map.remove(key); return true; } else { return false; }- Specified by:
removein interfaceMap<K,V> - Parameters:
key- key with which the specified value is associatedvalue- value expected to be associated with the specified key- Returns:
trueif the value was removed- Throws:
UnsupportedOperationException- if theremoveoperation 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:
except that the action is performed atomically.if (map.containsKey(key) && Objects.equals(map.get(key), oldValue)) { map.put(key, newValue); return true; } else { return false; }- Specified by:
replacein 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:
trueif the value was replaced- Throws:
UnsupportedOperationException- if theputoperation 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:
except that the action is performed atomically.if (map.containsKey(key)) return map.put(key, value); else return null;- Specified by:
replacein 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
nullif there was no mapping for the key. (Anullreturn can also indicate that the map previously associatednullwith the key, if the implementation supports null values.) - Throws:
UnsupportedOperationException- if theputoperation 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:
replaceAllin interfaceMap<K,V> - Throws:
UnsupportedOperationExceptionNullPointerExceptionClassCastExceptionIllegalArgumentException- Since:
- 1.8
- Implementation Requirements:
The default implementation is equivalent to, for this
map:
The default implementation may retry these steps when multiple threads attempt updates including potentially calling the function repeatedly for a given key.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:
computeIfAbsentin interfaceMap<K,V> - Throws:
UnsupportedOperationExceptionClassCastExceptionNullPointerExceptionIllegalArgumentException- 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:
computeIfPresentin interfaceMap<K,V> - Throws:
UnsupportedOperationExceptionClassCastExceptionNullPointerExceptionIllegalArgumentException- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map:
When multiple threads attempt updates, map operations and the remapping function may be called multiple times.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:
computein interfaceMap<K,V> - Throws:
UnsupportedOperationExceptionClassCastExceptionNullPointerExceptionIllegalArgumentException- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map:
When multiple threads attempt updates, map operations and the remapping function may be called multiple times.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:
mergein interfaceMap<K,V> - Throws:
UnsupportedOperationExceptionClassCastExceptionNullPointerExceptionIllegalArgumentException- Since:
- 1.8
- Implementation Requirements:
- The default implementation is equivalent to performing the following
steps for this
map:
When multiple threads attempt updates, map operations and the remapping function may be called multiple times.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.
-