K - the type of keys maintained by this map
V - the type of mapped values
public interface ConcurrentMap<K,V> extends Map<K ,V>
Map providing thread safety and 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.
| Modifier and Type | Method and Description |
|---|---|
default V |
compute(K key, BiFunction
Attempts to compute a mapping for the specified key and its current mapped value (or
null if there is no current mapping).
|
default V |
computeIfAbsent(K key, Function
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 this map unless
null.
|
default V |
computeIfPresent(K key, BiFunction
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.
|
default void |
forEach(BiConsumer
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
|
default V |
getOrDefault(Object
Returns the value to which the specified key is mapped, or
defaultValue if this map contains no mapping for the key.
|
default V |
merge(K key, V value, BiFunction
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
|
V |
putIfAbsent(K key, V value)
If the specified key is not already associated with a value, associate it with the given value.
|
boolean |
remove(Object
Removes the entry for a key only if currently mapped to a given value.
|
V |
replace(K key, V value)
Replaces the entry for a key only if currently mapped to some value.
|
boolean |
replace(K key, V oldValue, V newValue)
Replaces the entry for a key only if currently mapped to a given value.
|
default void |
replaceAll(BiFunction
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.
|
default V getOrDefault(Objectkey, V defaultValue)
defaultValue if this map contains no mapping for the key.
getOrDefault in interface
Map<K,V>
key - the key whose associated value is to be returned
defaultValue - the default mapping of the key
defaultValue if this map contains no mapping for the key
ClassCastException - if the key is of an inappropriate type for this map (
optional)
NullPointerException - if the specified key is null and this map does not permit null keys (
optional)
default void forEach(BiConsumer<? super K ,? super V> action)
forEach in interface
Map<K,V>
action - The action to be performed for each entry
NullPointerException - if the specified action is null
V putIfAbsent(K key, V value)
if (!map.containsKey(key)) return map.put(key, value); else return map.get(key); except that the action is performed atomically.
putIfAbsent in interface
Map<K,V>
key - key with which the specified value is to be associated
value - value to be associated with the specified key
null 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 this map
ClassCastException - if the class of the specified key or value prevents it from being stored in this map
NullPointerException - if the specified key or value is null, and this map does not permit null keys or values
IllegalArgumentException - if some property of the specified key or value prevents it from being stored in this map
boolean remove(Objectkey, Object value)
if (map.containsKey(key) && Objects.equals(map.get(key), value)) { map.remove(key); return true; } else return false; except that the action is performed atomically.
remove in interface
Map<K,V>
key - key with which the specified value is associated
value - value expected to be associated with the specified key
true if the value was removed
UnsupportedOperationException - if the
remove operation is not supported by this map
ClassCastException - 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)
boolean replace(K key, V oldValue, V newValue)
if (map.containsKey(key) && Objects.equals(map.get(key), oldValue)) { map.put(key, newValue); return true; } else return false; except that the action is performed atomically.
replace in interface
Map<K,V>
key - key with which the specified value is associated
oldValue - value expected to be associated with the specified key
newValue - value to be associated with the specified key
true if the value was replaced
UnsupportedOperationException - if the
put operation is not supported by this map
ClassCastException - if the class of a specified key or value prevents it from being stored in this map
NullPointerException - if a specified key or value is null, and this map does not permit null keys or values
IllegalArgumentException - if some property of a specified key or value prevents it from being stored in this map
V replace(K key, V value)
if (map.containsKey(key)) { return map.put(key, value); } else return null; except that the action is performed atomically.
replace in interface
Map<K,V>
key - key with which the specified value is associated
value - value to be associated with the specified key
null 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 this map
ClassCastException - if the class of the specified key or value prevents it from being stored in this map
NullPointerException - if the specified key or value is null, and this map does not permit null keys or values
IllegalArgumentException - if some property of the specified key or value prevents it from being stored in this map
default void replaceAll(BiFunction<? super K ,? super V ,? extends V> function)
replaceAll in interface
Map<K,V>
function - the function to apply to each entry
UnsupportedOperationException - if the
set operation is not supported by this map's entry set iterator.
NullPointerException - if function or a replacement value is null, and this map does not permit null keys or values (
optional)
ClassCastException - if a replacement value is of an inappropriate type for this map (
optional)
IllegalArgumentException - if some property of a replacement value prevents it from being stored in this map (
optional)
default V computeIfAbsent(K key, Function<? super K ,? extends V> mappingFunction)
null), attempts to compute its value using the given mapping function and enters it into this map unless
null.
If the function returns null no mapping is recorded. If the 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);
computeIfAbsent in interface
Map<K,V>
key - key with which the specified value is to be associated
mappingFunction - the function to compute a value
UnsupportedOperationException - if the
put operation is not supported by this map (
optional)
ClassCastException - if the class of the specified key or value prevents it from being stored in this map (
optional)
NullPointerException - if the specified key is null and this map does not support null keys, or the mappingFunction is null
default V computeIfPresent(K key, BiFunction<? super K ,? super V ,? extends V> remappingFunction)
If the function returns null, the mapping is removed. If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
computeIfPresent in interface
Map<K,V>
key - key with which the specified value is to be associated
remappingFunction - the function to compute a value
UnsupportedOperationException - if the
put operation is not supported by this map (
optional)
ClassCastException - if the class of the specified key or value prevents it from being stored in this map (
optional)
NullPointerException - if the specified key is null and this map does not support null keys, or the remappingFunction is null
default V compute(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 function returns null, the mapping is removed (or remains absent if initially absent). If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
compute in interface
Map<K,V>
key - key with which the specified value is to be associated
remappingFunction - the function to compute a value
UnsupportedOperationException - if the
put operation is not supported by this map (
optional)
ClassCastException - if the class of the specified key or value prevents it from being stored in this map (
optional)
NullPointerException - if the specified key is null and this map does not support null keys, or the remappingFunction is null
default V merge(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 function returns null the mapping is removed. If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
merge in interface
Map<K,V>
key - key with which the resulting value is to be associated
value - 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 key
remappingFunction - the function to recompute a value if present
UnsupportedOperationException - if the
put operation is not supported by this map (
optional)
ClassCastException - if the class of the specified key or value prevents it from being stored in this map (
optional)
NullPointerException - if the specified key is null and this map does not support null keys or the value or remappingFunction is null