Package gw.util
Class CiHashMap.EntryIterator<E>
- java.lang.Object
-
- gw.util.CiHashMap.EntryIterator<E>
-
- All Implemented Interfaces:
java.util.Iterator<E>
- Direct Known Subclasses:
CiHashMap.KeyIterator,CiHashMap.MapEntryIterator,CiHashMap.ValuesIterator
private abstract class CiHashMap.EntryIterator<E> extends java.lang.Object implements java.util.Iterator<E>
-
-
Field Summary
Fields Modifier and Type Field Description private int_expectedModCountprivate CiHashMap.Entry<K,V>_lastReturnedprivate CiHashMap.Entry<K,V>_nextprivate int_nextBucket
-
Constructor Summary
Constructors Modifier Constructor Description protectedEntryIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidadvanceIterator()private voidcheckForConcurrentModification()booleanhasNext()CiHashMap.Entry<K,V>nextEntry()voidremove()
-
-
-
Field Detail
-
_lastReturned
private CiHashMap.Entry<K extends java.lang.CharSequence,V> _lastReturned
-
_next
private CiHashMap.Entry<K extends java.lang.CharSequence,V> _next
-
_nextBucket
private int _nextBucket
-
_expectedModCount
private int _expectedModCount
-
-
Method Detail
-
nextEntry
public CiHashMap.Entry<K,V> nextEntry()
-
checkForConcurrentModification
private void checkForConcurrentModification()
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<E>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<E>
-
advanceIterator
private void advanceIterator()
-
-