Top Description Inners Fields Constructors Methods
java.util.concurrent

public Class ConcurrentHashMap<K, V>

extends AbstractMap<K, V>
implements ConcurrentMap<K, V>, Serializable
Class Inheritance
All Implemented Interfaces
java.io.Serializable, java.util.concurrent.ConcurrentMap, java.util.Map
Known Direct Subclasses
java.io.ObjectStreamClass.DeserializationConstructorsCache
Type Parameters
<K>
the type of keys maintained by this map
<V>
the type of mapped values
Imports
java.io.ObjectStreamField, .Serializable, java.lang.reflect.ParameterizedType, .Type, java.util.AbstractMap, .Arrays, .Collection, .Enumeration, .HashMap, .Hashtable, .Iterator, .Map, .NoSuchElementException, .Set, .Spliterator, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.locks.LockSupport, .ReentrantLock, java.util.function.BiConsumer, .BiFunction, .Consumer, .DoubleBinaryOperator, .Function, .IntBinaryOperator, .LongBinaryOperator, .Predicate, .ToDoubleBiFunction, .ToDoubleFunction, .ToIntBiFunction, .ToIntFunction, .ToLongBiFunction, .ToLongFunction, java.util.stream.Stream, jdk.internal.misc.Unsafe

A hash table supporting full concurrency of retrievals and high expected concurrency for updates. This class obeys the same functional specification as java.util.Hashtable, and includes versions of methods corresponding to each method of Hashtable. However, even though all operations are thread-safe, retrieval operations do not entail locking, and there is not any support for locking the entire table in a way that prevents all access. This class is fully interoperable with Hashtable in programs that rely on its thread safety but not on its synchronization details.

Retrieval operations (including get) generally do not block, so may overlap with update operations (including put and remove). Retrievals reflect the results of the most recently completed update operations holding upon their onset. (More formally, an update operation for a given key bears a happens-before relation with any (non-null) retrieval for that key reporting the updated value.) For aggregate operations such as putAll and clear, concurrent retrievals may reflect insertion or removal of only some entries. Similarly, Iterators, Spliterators and Enumerations return elements reflecting the state of the hash table at some point at or since the creation of the iterator/enumeration. They do not throw ConcurrentModificationException. However, iterators are designed to be used by only one thread at a time. Bear in mind that the results of aggregate status methods including size, isEmpty, and containsValue are typically useful only when a map is not undergoing concurrent updates in other threads. Otherwise the results of these methods reflect transient states that may be adequate for monitoring or estimation purposes, but not for program control.

The table is dynamically expanded when there are too many collisions (i.e., keys that have distinct hash codes but fall into the same slot modulo the table size), with the expected average effect of maintaining roughly two bins per mapping (corresponding to a 0.75 load factor threshold for resizing). There may be much variance around this average as mappings are added and removed, but overall, this maintains a commonly accepted time/space tradeoff for hash tables. However, resizing this or any other kind of hash table may be a relatively slow operation. When possible, it is a good idea to provide a size estimate as an optional initialCapacity constructor argument. An additional optional loadFactor constructor argument provides a further means of customizing initial table capacity by specifying the table density to be used in calculating the amount of space to allocate for the given number of elements. Also, for compatibility with previous versions of this class, constructors may optionally specify an expected concurrencyLevel as an additional hint for internal sizing. Note that using many keys with exactly the same hashCode() is a sure way to slow down performance of any hash table. To ameliorate impact, when keys are Comparable, this class may use comparison order among keys to help break ties.

A Set projection of a ConcurrentHashMap may be created (using newKeySet() or newKeySet(int)), or viewed (using keySet(Object) when only keys are of interest, and the mapped values are (perhaps transiently) not used or all take the same mapping value.

A ConcurrentHashMap can be used as a scalable frequency map (a form of histogram or multiset) by using java.util.concurrent.atomic.LongAdder values and initializing via computeIfAbsent. For example, to add a count to a ConcurrentHashMap<String,LongAdder> freqs, you can use freqs.computeIfAbsent(key, k -> new LongAdder()).increment();

This class and its views and iterators implement all of the optional methods of the Map and Iterator interfaces.

Like Hashtable but unlike HashMap, this class does not allow null to be used as a key or value.

ConcurrentHashMaps support a set of sequential and parallel bulk operations that, unlike most Stream methods, are designed to be safely, and often sensibly, applied even with maps that are being concurrently updated by other threads; for example, when computing a snapshot summary of the values in a shared registry. There are three kinds of operation, each with four forms, accepting functions with keys, values, entries, and (key, value) pairs as arguments and/or return values. Because the elements of a ConcurrentHashMap are not ordered in any particular way, and may be processed in different orders in different parallel executions, the correctness of supplied functions should not depend on any ordering, or on any other objects or values that may transiently change while computation is in progress; and except for forEach actions, should ideally be side-effect-free. Bulk operations on Map.Entry objects do not support method setValue.

These bulk operations accept a parallelismThreshold argument. Methods proceed sequentially if the current map size is estimated to be less than the given threshold. Using a value of Long.MAX_VALUE suppresses all parallelism. Using a value of 1 results in maximal parallelism by partitioning into enough subtasks to fully utilize the ForkJoinPool#commonPool() that is used for all parallel computations. Normally, you would initially choose one of these extreme values, and then measure performance of using in-between values that trade off overhead versus throughput.

The concurrency properties of bulk operations follow from those of ConcurrentHashMap: Any non-null result returned from get(key) and related access methods bears a happens-before relation with the associated insertion or update. The result of any bulk operation reflects the composition of these per-element relations (but is not necessarily atomic with respect to the map as a whole unless it is somehow known to be quiescent). Conversely, because keys and values in the map are never null, null serves as a reliable atomic indicator of the current lack of any result. To maintain this property, null serves as an implicit basis for all non-scalar reduction operations. For the double, long, and int versions, the basis should be one that, when combined with any other value, returns that other value (more formally, it should be the identity element for the reduction). Most common reductions have these properties; for example, computing a sum with basis 0 or a minimum with basis MAX_VALUE.

Search and transformation functions provided as arguments should similarly return null to indicate the lack of any result (in which case it is not used). In the case of mapped reductions, this also enables transformations to serve as filters, returning null (or, in the case of primitive specializations, the identity basis) if the element should not be combined. You can create compound transformations and filterings by composing them yourself under this "null means there is nothing there now" rule before using them in search or reduce operations.

Methods accepting and/or returning Entry arguments maintain key-value associations. They may be useful for example when finding the key for the greatest value. Note that "plain" Entry arguments can be supplied using new AbstractMap.SimpleEntry(k,v).

Bulk operations may complete abruptly, throwing an exception encountered in the application of a supplied function. Bear in mind when handling such exceptions that other concurrently executing functions could also have thrown exceptions, or would have done so if the first exception had not occurred.

Speedups for parallel compared to sequential forms are common but not guaranteed. Parallel operations involving brief functions on small maps may execute more slowly than sequential forms if the underlying work to parallelize the computation is more expensive than the computation itself. Similarly, parallelization may not lead to much actual parallelism if all processors are busy performing unrelated tasks.

All arguments to all task methods must be non-null.

This class is a member of the Java Collections Framework.

Author
Doug Lea
Since
1.5

Nested and Inner Type Summary

Modifier and TypeClass and Description
pack-priv static class
ConcurrentHashMap.BaseIterator<K, V>

Base of key, value, and entry Iterators.

pack-priv abstract static class
ConcurrentHashMap.BulkTask<K, V, R>

Base class for bulk tasks.

pack-priv abstract static class
ConcurrentHashMap.CollectionView<K, V, E>

Base class for views.

pack-priv static class
ConcurrentHashMap.CounterCell

A padded cell for distributing counts.

pack-priv static class
pack-priv static class
ConcurrentHashMap.EntrySetView<K, V>

A view of a ConcurrentHashMap as a Set of (key, value) entries.

pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
ConcurrentHashMap.ForwardingNode<K, V>

A node inserted at head of bins during transfer operations.

pack-priv static class
public static class
ConcurrentHashMap.KeySetView<
the type of keys
K
,
the type of values in the backing map
V
>

A view of a ConcurrentHashMap as a Set of keys, in which additions may optionally be enabled by mapping to a common value.

pack-priv static class
pack-priv static class
ConcurrentHashMap.MapEntry<K, V>

Exported Entry for EntryIterator.

pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
ConcurrentHashMap.Node<K, V>

Key-value entry.

pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
ConcurrentHashMap.ReservationNode<K, V>

A place-holder node used in computeIfAbsent and compute.

pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
pack-priv static class
ConcurrentHashMap.Segment<K, V>

Stripped-down version of helper class used in previous version, declared for the sake of serialization compatibility.

pack-priv static class
ConcurrentHashMap.TableStack<K, V>

Records the table, its length, and current traversal index for a traverser that must process a region of a forwarded table before proceeding with current table.

pack-priv static class
ConcurrentHashMap.Traverser<K, V>

Encapsulates traversal for methods such as containsValue; also serves as a base class for other iterators and spliterators.

pack-priv static class
ConcurrentHashMap.TreeBin<K, V>

TreeNodes used at the heads of bins.

pack-priv static class
ConcurrentHashMap.TreeNode<K, V>

Nodes for use in TreeBins.

pack-priv static class
pack-priv static class
pack-priv static class
ConcurrentHashMap.ValuesView<K, V>

A view of a ConcurrentHashMap as a Collection of values, in which additions are disabled.

Field Summary

Modifier and TypeField and Description
private static final int
private static final int
private transient volatile long
baseCount

Base counter value, used mainly when there is no contention, but also as a fallback during table initialization races.

private static final long
private transient volatile int
cellsBusy

Spinlock (locked via CAS) used when resizing and/or creating CounterCells.

private static final long
private static final long
private transient volatile ConcurrentHashMap.CounterCell[]
counterCells

Table of counter cells.

private static final int
DEFAULT_CAPACITY

The default initial table capacity.

private static final int
DEFAULT_CONCURRENCY_LEVEL

The default concurrency level for this table.

private transient ConcurrentHashMap.EntrySetView<K, V>
pack-priv static final int
private transient ConcurrentHashMap.KeySetView<K, V>
private static final float
LOAD_FACTOR

The load factor for this table.

pack-priv static final int
MAX_ARRAY_SIZE

The largest possible (non-power of two) array size.

private static final int
MAX_RESIZERS

The maximum number of threads that can help resize.

private static final int
MAXIMUM_CAPACITY

The largest possible table capacity.

private static final int
MIN_TRANSFER_STRIDE

Minimum number of rebinnings per transfer step.

pack-priv static final int
MIN_TREEIFY_CAPACITY

The smallest table capacity for which bins may be treeified.

pack-priv static final int
pack-priv static final int
NCPU

Number of CPUS, to place bounds on some sizings

private transient volatile ConcurrentHashMap.Node<K, V>[]
nextTable

The next table to use; non-null only while resizing.

pack-priv static final int
private static final int
RESIZE_STAMP_BITS

The number of bits used for generation stamp in sizeCtl.

private static final int
RESIZE_STAMP_SHIFT

The bit shift for recording size stamp in sizeCtl.

private static final ObjectStreamField[]
serialPersistentFields

Serialized pseudo-fields, provided only for jdk7 compatibility.

private static final long
private transient volatile int
sizeCtl

Table initialization and resizing control.

private static final long
pack-priv transient volatile ConcurrentHashMap.Node<K, V>[]
table

The array of bins.

private transient volatile int
transferIndex

The next table index (plus one) to split while resizing.

private static final long
pack-priv static final int
pack-priv static final int
TREEIFY_THRESHOLD

The bin count threshold for using a tree rather than list for a bin.

private static final Unsafe
U

pack-priv static final int
UNTREEIFY_THRESHOLD

The bin count threshold for untreeifying a (split) bin during a resize operation.

private transient ConcurrentHashMap.ValuesView<K, V>

Constructor Summary

AccessConstructor and Description
public
ConcurrentHashMap()

Creates a new, empty map with the default initial table size (16).

public
ConcurrentHashMap(int
The implementation performs internal sizing to accommodate this many elements.
initialCapacity
)

Creates a new, empty map with an initial table size accommodating the specified number of elements without the need to dynamically resize.

public
ConcurrentHashMap(Map<? extends K, ? extends V>
the map
m
)

Creates a new map with the same mappings as the given map.

public
ConcurrentHashMap(int
the initial capacity. The implementation performs internal sizing to accommodate this many elements, given the specified load factor.
initialCapacity
,
float
the load factor (table density) for establishing the initial table size
loadFactor
)

Creates a new, empty map with an initial table size based on the given number of elements (initialCapacity) and initial table density (loadFactor).

public
ConcurrentHashMap(int
the initial capacity. The implementation performs internal sizing to accommodate this many elements, given the specified load factor.
initialCapacity
,
float
the load factor (table density) for establishing the initial table size
loadFactor
,
int
the estimated number of concurrently updating threads. The implementation may use this value as a sizing hint.
concurrencyLevel
)

Creates a new, empty map with an initial table size based on the given number of elements (initialCapacity), initial table density (loadFactor), and number of concurrently updating threads (concurrencyLevel).

Method Summary

Modifier and TypeMethod and Description
private final void
addCount(long
the count to add
x
,
int
if <0, don't check resize, if <= 1 only check if uncontended
check
)

Adds to count, and if table is too small and not already resizing, initiates transfer.

pack-priv final int
batchFor(long b)

Computes initial batch value for bulk tasks.

pack-priv static final <K, V> boolean
public void
clear()

Overrides java.util.AbstractMap.clear.

Implements java.util.Map.clear.

Removes all of the mappings from this map.

pack-priv static Class<?>
comparableClassFor(Object x)

Returns x's Class if it is of the form "class C implements Comparable<C>", else null.

pack-priv static int
compareComparables(Class<?> kc, Object k, Object x)

Returns k.compareTo(x) if x matches kc (k's screened comparable class), else 0.

public V

Returns:

the new value associated with the specified key, or null if none
compute
(K
key with which the specified value is to be associated
key
,
BiFunction<? super K, ? super V, ? extends V>
the function to compute a value
remappingFunction
)

Overrides default java.util.concurrent.ConcurrentMap.compute, java.util.Map.compute.

Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).

public V

Returns:

the current (existing or computed) value associated with the specified key, or null if the computed value is null
computeIfAbsent
(K
key with which the specified value is to be associated
key
,
Function<? super K, ? extends V>
the function to compute a value
mappingFunction
)

Overrides default java.util.concurrent.ConcurrentMap.computeIfAbsent, java.util.Map.computeIfAbsent.

If the specified key is not already associated with a value, attempts to compute its value using the given mapping function and enters it into this map unless null.

public V

Returns:

the new value associated with the specified key, or null if none
computeIfPresent
(K
key with which a value may be associated
key
,
BiFunction<? super K, ? super V, ? extends V>
the function to compute a value
remappingFunction
)

Overrides default java.util.concurrent.ConcurrentMap.computeIfPresent, java.util.Map.computeIfPresent.

If the value for the specified key is present, attempts to compute a new mapping given the key and its current mapped value.

public boolean

Returns:

true if and only if some key maps to the value argument in this table as determined by the equals method; false otherwise
contains
(Object
a value to search for
value
)

Tests if some key maps into the specified value in this table.

public boolean

Returns:

true if and only if the specified object is a key in this table, as determined by the equals method; false otherwise
containsKey
(Object
possible key
key
)

Overrides java.util.AbstractMap.containsKey.

Implements java.util.Map.containsKey.

Tests if the specified object is a key in this table.

public boolean

Returns:

true if this map maps one or more keys to the specified value
containsValue
(Object
value whose presence in this map is to be tested
value
)

Overrides java.util.AbstractMap.containsValue.

Implements java.util.Map.containsValue.

Returns true if this map maps one or more keys to the specified value.

public Enumeration<V>

Returns:

an enumeration of the values in this table
elements
()

Returns an enumeration of the values in this table.

public Set<Map.Entry<K, V>>

Returns:

the set view
entrySet
()

Implements abstract java.util.AbstractMap.entrySet.

Implements java.util.Map.entrySet.

Returns a Set view of the mappings contained in this map.

public boolean

Returns:

true if the specified object is equal to this map
equals
(Object
object to be compared for equality with this map
o
)

Overrides java.util.AbstractMap.equals.

Implements java.util.Map.equals.

Compares the specified object with this map for equality.

public void
forEach(BiConsumer<? super K, ? super V>
The action to be performed for each entry
action
)

Overrides default java.util.concurrent.ConcurrentMap.forEach, java.util.Map.forEach.

Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.

public void
forEach(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiConsumer<? super K, ? super V>
the action
action
)

Performs the given action for each (key, value).

public <
the return type of the transformer
U
>
void
forEach(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<? super K, ? super V, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case the action is not applied)
transformer
,
Consumer<? super U>
the action
action
)

Performs the given action for each non-null transformation of each (key, value).

public void
forEachEntry(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Consumer<? super Map.Entry<K, V>>
the action
action
)

Performs the given action for each entry.

public <
the return type of the transformer
U
>
void
forEachEntry(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<Map.Entry<K, V>, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case the action is not applied)
transformer
,
Consumer<? super U>
the action
action
)

Performs the given action for each non-null transformation of each entry.

public void
forEachKey(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Consumer<? super K>
the action
action
)

Performs the given action for each key.

public <
the return type of the transformer
U
>
void
forEachKey(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super K, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case the action is not applied)
transformer
,
Consumer<? super U>
the action
action
)

Performs the given action for each non-null transformation of each key.

public void
forEachValue(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Consumer<? super V>
the action
action
)

Performs the given action for each value.

public <
the return type of the transformer
U
>
void
forEachValue(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super V, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case the action is not applied)
transformer
,
Consumer<? super U>
the action
action
)

Performs the given action for each non-null transformation of each value.

private final void
fullAddCount(long x, boolean wasUncontended)

public V
get(Object
the key whose associated value is to be returned
key
)

Overrides java.util.AbstractMap.get.

Implements java.util.Map.get.

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

public V

Returns:

the mapping for the key, if present; else the default value
getOrDefault
(Object
the key whose associated value is to be returned
key
,
V
the value to return if this map contains no mapping for the given key
defaultValue
)

Overrides default java.util.concurrent.ConcurrentMap.getOrDefault, java.util.Map.getOrDefault.

Returns the value to which the specified key is mapped, or the given default value if this map contains no mapping for the key.

public int

Returns:

the hash code value for this map
hashCode
()

Overrides java.util.AbstractMap.hashCode.

Implements java.util.Map.hashCode.

Returns the hash code value for this Map, i.e., the sum of, for each key-value pair in the map, key.hashCode() ^ value.hashCode().

pack-priv final ConcurrentHashMap.Node<K, V>[]
helpTransfer(ConcurrentHashMap.Node<K, V>[] tab, ConcurrentHashMap.Node<K, V> f)

Helps transfer if a resize is in progress.

private final ConcurrentHashMap.Node<K, V>[]
initTable()

Initializes table, using the size recorded in sizeCtl.

public boolean
isEmpty()

Overrides java.util.AbstractMap.isEmpty.

Implements java.util.Map.isEmpty.

Returns true if this map contains no key-value mappings.

public Enumeration<K>

Returns:

an enumeration of the keys in this table
keys
()

Returns an enumeration of the keys in this table.

public ConcurrentHashMap.KeySetView<K, V>

Returns:

the set view
keySet
()

Overrides java.util.AbstractMap.keySet.

Implements java.util.Map.keySet.

Returns a Set view of the keys contained in this map.

public ConcurrentHashMap.KeySetView<K, V>

Returns:

the set view
keySet
(V
the mapped value to use for any additions
mappedValue
)

Returns a Set view of the keys in this map, using the given common mapped value for any additions (i.e., Collection#add and Collection#addAll(Collection)).

public long

Returns:

the number of mappings
mappingCount
()

Returns the number of mappings.

public V

Returns:

the new value associated with the specified key, or null if none
merge
(K
key with which the specified value is to be associated
key
,
V
the value to use if absent
value
,
BiFunction<? super V, ? super V, ? extends V>
the function to recompute a value if present
remappingFunction
)

Overrides default java.util.concurrent.ConcurrentMap.merge, java.util.Map.merge.

If the specified key is not already associated with a (non-null) value, associates it with the given value.

public static <
the element type of the returned set
K
>
ConcurrentHashMap.KeySetView<K, Boolean>

Returns:

the new set
newKeySet
()

Creates a new Set backed by a ConcurrentHashMap from the given type to Boolean.TRUE.

public static <
the element type of the returned set
K
>
ConcurrentHashMap.KeySetView<K, Boolean>

Returns:

the new set
newKeySet
(int
The implementation performs internal sizing to accommodate this many elements.
initialCapacity
)

Creates a new Set backed by a ConcurrentHashMap from the given type to Boolean.TRUE.

public V

Returns:

the previous value associated with key, or null if there was no mapping for key
put
(K
key with which the specified value is to be associated
key
,
V
value to be associated with the specified key
value
)

Overrides java.util.AbstractMap.put.

Implements java.util.Map.put.

Maps the specified key to the specified value in this table.

public void
putAll(Map<? extends K, ? extends V>
mappings to be stored in this map
m
)

Overrides java.util.AbstractMap.putAll.

Implements java.util.Map.putAll.

Copies all of the mappings from the specified map to this one.

public V

Returns:

the previous value associated with the specified key, or null if there was no mapping for the key
putIfAbsent
(K
key with which the specified value is to be associated
key
,
V
value to be associated with the specified key
value
)

Overrides default java.util.Map.putIfAbsent.

Implements java.util.concurrent.ConcurrentMap.putIfAbsent.

If the specified key is not already associated with a value, associates it with the given value.

pack-priv final V
putVal(K key, V value, boolean onlyIfAbsent)

Implementation for put and putIfAbsent

private void
readObject(ObjectInputStream
the stream
s
)

Reconstitutes this map from a stream (that is, deserializes it).

public <
the return type of the transformer
U
>
U

Returns:

the result of accumulating the given transformation of all (key, value) pairs
reduce
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<? super K, ? super V, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case it is not combined)
transformer
,
BiFunction<? super U, ? super U, ? extends U>
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all (key, value) pairs using the given reducer to combine values, or null if none.

public Map.Entry<K, V>

Returns:

the result of accumulating all entries
reduceEntries
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<Map.Entry<K, V>, Map.Entry<K, V>, ? extends Map.Entry<K, V>>
a commutative associative combining function
reducer
)

Returns the result of accumulating all entries using the given reducer to combine values, or null if none.

public <
the return type of the transformer
U
>
U

Returns:

the result of accumulating the given transformation of all entries
reduceEntries
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<Map.Entry<K, V>, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case it is not combined)
transformer
,
BiFunction<? super U, ? super U, ? extends U>
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, or null if none.

public double

Returns:

the result of accumulating the given transformation of all entries
reduceEntriesToDouble
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToDoubleFunction<Map.Entry<K, V>>
a function returning the transformation for an element
transformer
,
double
the identity (initial default value) for the reduction
basis
,
DoubleBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.

public int

Returns:

the result of accumulating the given transformation of all entries
reduceEntriesToInt
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToIntFunction<Map.Entry<K, V>>
a function returning the transformation for an element
transformer
,
int
the identity (initial default value) for the reduction
basis
,
IntBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.

public long

Returns:

the result of accumulating the given transformation of all entries
reduceEntriesToLong
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToLongFunction<Map.Entry<K, V>>
a function returning the transformation for an element
transformer
,
long
the identity (initial default value) for the reduction
basis
,
LongBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all entries using the given reducer to combine values, and the given basis as an identity value.

public K

Returns:

the result of accumulating all keys using the given reducer to combine values, or null if none
reduceKeys
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<? super K, ? super K, ? extends K>
a commutative associative combining function
reducer
)

Returns the result of accumulating all keys using the given reducer to combine values, or null if none.

public <
the return type of the transformer
U
>
U

Returns:

the result of accumulating the given transformation of all keys
reduceKeys
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super K, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case it is not combined)
transformer
,
BiFunction<? super U, ? super U, ? extends U>
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all keys using the given reducer to combine values, or null if none.

public double

Returns:

the result of accumulating the given transformation of all keys
reduceKeysToDouble
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToDoubleFunction<? super K>
a function returning the transformation for an element
transformer
,
double
the identity (initial default value) for the reduction
basis
,
DoubleBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all keys using the given reducer to combine values, and the given basis as an identity value.

public int

Returns:

the result of accumulating the given transformation of all keys
reduceKeysToInt
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToIntFunction<? super K>
a function returning the transformation for an element
transformer
,
int
the identity (initial default value) for the reduction
basis
,
IntBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all keys using the given reducer to combine values, and the given basis as an identity value.

public long

Returns:

the result of accumulating the given transformation of all keys
reduceKeysToLong
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToLongFunction<? super K>
a function returning the transformation for an element
transformer
,
long
the identity (initial default value) for the reduction
basis
,
LongBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all keys using the given reducer to combine values, and the given basis as an identity value.

public double

Returns:

the result of accumulating the given transformation of all (key, value) pairs
reduceToDouble
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToDoubleBiFunction<? super K, ? super V>
a function returning the transformation for an element
transformer
,
double
the identity (initial default value) for the reduction
basis
,
DoubleBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all (key, value) pairs using the given reducer to combine values, and the given basis as an identity value.

public int

Returns:

the result of accumulating the given transformation of all (key, value) pairs
reduceToInt
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToIntBiFunction<? super K, ? super V>
a function returning the transformation for an element
transformer
,
int
the identity (initial default value) for the reduction
basis
,
IntBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all (key, value) pairs using the given reducer to combine values, and the given basis as an identity value.

public long

Returns:

the result of accumulating the given transformation of all (key, value) pairs
reduceToLong
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToLongBiFunction<? super K, ? super V>
a function returning the transformation for an element
transformer
,
long
the identity (initial default value) for the reduction
basis
,
LongBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all (key, value) pairs using the given reducer to combine values, and the given basis as an identity value.

public V

Returns:

the result of accumulating all values
reduceValues
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<? super V, ? super V, ? extends V>
a commutative associative combining function
reducer
)

Returns the result of accumulating all values using the given reducer to combine values, or null if none.

public <
the return type of the transformer
U
>
U

Returns:

the result of accumulating the given transformation of all values
reduceValues
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super V, ? extends U>
a function returning the transformation for an element, or null if there is no transformation (in which case it is not combined)
transformer
,
BiFunction<? super U, ? super U, ? extends U>
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all values using the given reducer to combine values, or null if none.

public double

Returns:

the result of accumulating the given transformation of all values
reduceValuesToDouble
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToDoubleFunction<? super V>
a function returning the transformation for an element
transformer
,
double
the identity (initial default value) for the reduction
basis
,
DoubleBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all values using the given reducer to combine values, and the given basis as an identity value.

public int

Returns:

the result of accumulating the given transformation of all values
reduceValuesToInt
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToIntFunction<? super V>
a function returning the transformation for an element
transformer
,
int
the identity (initial default value) for the reduction
basis
,
IntBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all values using the given reducer to combine values, and the given basis as an identity value.

public long

Returns:

the result of accumulating the given transformation of all values
reduceValuesToLong
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
ToLongFunction<? super V>
a function returning the transformation for an element
transformer
,
long
the identity (initial default value) for the reduction
basis
,
LongBinaryOperator
a commutative associative combining function
reducer
)

Returns the result of accumulating the given transformation of all values using the given reducer to combine values, and the given basis as an identity value.

public V

Returns:

the previous value associated with key, or null if there was no mapping for key
remove
(Object
the key that needs to be removed
key
)

Overrides java.util.AbstractMap.remove.

Implements java.util.Map.remove.

Removes the key (and its corresponding value) from this map.

public boolean

Returns:

true if the value was removed
remove
(Object
key with which the specified value is associated
key
,
Object
value expected to be associated with the specified key
value
)

Overrides default java.util.Map.remove.

Implements java.util.concurrent.ConcurrentMap.remove.

Removes the entry for a key only if currently mapped to a given value.

pack-priv boolean
removeEntryIf(Predicate<? super Map.Entry<K, V>> function)

Helper method for EntrySetView.removeIf.

pack-priv boolean
removeValueIf(Predicate<? super V> function)

Helper method for ValuesView.removeIf.

public boolean

Returns:

true if the value was replaced
replace
(K
key with which the specified value is associated
key
,
V
value expected to be associated with the specified key
oldValue
,
V
value to be associated with the specified key
newValue
)

Overrides default java.util.Map.replace.

Implements java.util.concurrent.ConcurrentMap.replace.

Replaces the entry for a key only if currently mapped to a given value.

public V

Returns:

the previous value associated with the specified key, or null if there was no mapping for the key
replace
(K
key with which the specified value is associated
key
,
V
value to be associated with the specified key
value
)

Overrides default java.util.Map.replace.

Implements java.util.concurrent.ConcurrentMap.replace.

Replaces the entry for a key only if currently mapped to some value.

public void
replaceAll(BiFunction<? super K, ? super V, ? extends V>
the function to apply to each entry
function
)

Overrides default java.util.concurrent.ConcurrentMap.replaceAll, java.util.Map.replaceAll.

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 (optional operation).

pack-priv final V
replaceNode(Object key, V value, Object cv)

Implementation for the four public remove/replace methods: Replaces node value with v, conditional upon match of cv if non-null.

pack-priv static final int
resizeStamp(int n)

Returns the stamp bits for resizing a table of size n.

public <
the return type of the search function
U
>
U

Returns:

a non-null result from applying the given search function on each (key, value), or null if none
search
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
BiFunction<? super K, ? super V, ? extends U>
a function returning a non-null result on success, else null
searchFunction
)

Returns a non-null result from applying the given search function on each (key, value), or null if none.

public <
the return type of the search function
U
>
U

Returns:

a non-null result from applying the given search function on each entry, or null if none
searchEntries
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<Map.Entry<K, V>, ? extends U>
a function returning a non-null result on success, else null
searchFunction
)

Returns a non-null result from applying the given search function on each entry, or null if none.

public <
the return type of the search function
U
>
U

Returns:

a non-null result from applying the given search function on each key, or null if none
searchKeys
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super K, ? extends U>
a function returning a non-null result on success, else null
searchFunction
)

Returns a non-null result from applying the given search function on each key, or null if none.

public <
the return type of the search function
U
>
U

Returns:

a non-null result from applying the given search function on each value, or null if none
searchValues
(long
the (estimated) number of elements needed for this operation to be executed in parallel
parallelismThreshold
,
Function<? super V, ? extends U>
a function returning a non-null result on success, else null
searchFunction
)

Returns a non-null result from applying the given search function on each value, or null if none.

pack-priv static final <K, V> void
setTabAt(ConcurrentHashMap.Node<K, V>[] tab, int i, ConcurrentHashMap.Node<K, V> v)

public int
size()

Overrides java.util.AbstractMap.size.

Implements java.util.Map.size.

Returns the number of key-value mappings in this map.

pack-priv static final int
spread(int h)

Spreads (XORs) higher bits of hash to lower and also forces top bit to 0.

pack-priv final long
pack-priv static final <K, V> ConcurrentHashMap.Node<K, V>
tabAt(ConcurrentHashMap.Node<K, V>[] tab, int i)

private static final int
tableSizeFor(int c)

Returns a power of two table size for the given desired capacity.

public String

Returns:

a string representation of this map
toString
()

Overrides java.util.AbstractMap.toString.

Returns a string representation of this map.

private final void
transfer(ConcurrentHashMap.Node<K, V>[] tab, ConcurrentHashMap.Node<K, V>[] nextTab)

Moves and/or copies the nodes in each bin to new table.

private final void
treeifyBin(ConcurrentHashMap.Node<K, V>[] tab, int index)

Replaces all linked nodes in bin at given index unless table is too small, in which case resizes instead.

private final void
tryPresize(int
number of elements (doesn't need to be perfectly accurate)
size
)

Tries to presize table to accommodate the given number of elements.

pack-priv static <K, V> ConcurrentHashMap.Node<K, V>
untreeify(ConcurrentHashMap.Node<K, V> b)

Returns a list of non-TreeNodes replacing those in given list.

public Collection<V>

Returns:

the collection view
values
()

Overrides java.util.AbstractMap.values.

Implements java.util.Map.values.

Returns a Collection view of the values contained in this map.

private void
writeObject(ObjectOutputStream
the stream
s
)

Saves this map to a stream (that is, serializes it).

Inherited from java.util.AbstractMap:
clone