Package org.jboss.logmanager
Class ConcurrentReferenceHashMap.HashIterator
- java.lang.Object
-
- org.jboss.logmanager.ConcurrentReferenceHashMap.HashIterator
-
- Direct Known Subclasses:
ConcurrentReferenceHashMap.EntryIterator,ConcurrentReferenceHashMap.KeyIterator,ConcurrentReferenceHashMap.ValueIterator
- Enclosing class:
- ConcurrentReferenceHashMap<K,V>
abstract class ConcurrentReferenceHashMap.HashIterator extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) KcurrentKey(package private) ConcurrentReferenceHashMap.HashEntry<K,V>[]currentTable(package private) ConcurrentReferenceHashMap.HashEntry<K,V>lastReturned(package private) ConcurrentReferenceHashMap.HashEntry<K,V>nextEntry(package private) intnextSegmentIndex(package private) intnextTableIndex
-
Constructor Summary
Constructors Constructor Description HashIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidadvance()booleanhasMoreElements()booleanhasNext()(package private) ConcurrentReferenceHashMap.HashEntry<K,V>nextEntry()voidremove()
-
-
-
Field Detail
-
nextSegmentIndex
int nextSegmentIndex
-
nextTableIndex
int nextTableIndex
-
currentTable
ConcurrentReferenceHashMap.HashEntry<K,V>[] currentTable
-
nextEntry
ConcurrentReferenceHashMap.HashEntry<K,V> nextEntry
-
lastReturned
ConcurrentReferenceHashMap.HashEntry<K,V> lastReturned
-
currentKey
K currentKey
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
-
advance
final void advance()
-
hasNext
public boolean hasNext()
-
nextEntry
ConcurrentReferenceHashMap.HashEntry<K,V> nextEntry()
-
remove
public void remove()
-
-