-
count
int count
The number of elements in this segment's region.
-
modCount
int modCount
Number of updates that alter the size of the table. This is
used during bulk-read methods to make sure they see a
consistent snapshot: If modCounts change during a traversal
of segments computing size or checking containsValue, then
we might have an inconsistent view of state so (usually)
must retry.
-
threshold
int threshold
The table is rehashed when its size exceeds this threshold.
(The value of this field is always (int)(capacity *
loadFactor).)
-
table
ConcurrentMap.HashEntry[] table
The per-segment table.
-
loadFactor
float loadFactor
The load factor for the hash table. Even though this value
is same for all segments, it is replicated to avoid needing
links to outer object.
-
evictionIterator
Iterator<E> evictionIterator