Package EDU.oswego.cs.dl.util.concurrent
Class ConcurrentHashMap.HashIterator
- java.lang.Object
-
- EDU.oswego.cs.dl.util.concurrent.ConcurrentHashMap.HashIterator
-
- All Implemented Interfaces:
Enumeration
,Iterator
- Direct Known Subclasses:
ConcurrentHashMap.KeyIterator
,ConcurrentHashMap.ValueIterator
- Enclosing class:
- ConcurrentHashMap
protected class ConcurrentHashMap.HashIterator extends Object implements Iterator, Enumeration
-
-
Field Summary
Fields Modifier and Type Field Description protected Object
currentKey
protected Object
currentValue
protected ConcurrentHashMap.Entry
entry
protected int
index
protected ConcurrentHashMap.Entry
lastReturned
protected ConcurrentHashMap.Entry[]
tab
-
Constructor Summary
Constructors Modifier Constructor Description protected
HashIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasMoreElements()
boolean
hasNext()
Object
next()
Object
nextElement()
void
remove()
protected Object
returnValueOfNext()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Enumeration
asIterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Field Detail
-
tab
protected final ConcurrentHashMap.Entry[] tab
-
index
protected int index
-
entry
protected ConcurrentHashMap.Entry entry
-
currentKey
protected Object currentKey
-
currentValue
protected Object currentValue
-
lastReturned
protected ConcurrentHashMap.Entry lastReturned
-
-
Method Detail
-
hasMoreElements
public boolean hasMoreElements()
- Specified by:
hasMoreElements
in interfaceEnumeration
-
nextElement
public Object nextElement()
- Specified by:
nextElement
in interfaceEnumeration
-
returnValueOfNext
protected Object returnValueOfNext()
-
-