Package org.sunflow.util
Class FastHashMap.EntryIterator
- java.lang.Object
-
- org.sunflow.util.FastHashMap.EntryIterator
-
- All Implemented Interfaces:
java.util.Iterator<FastHashMap.Entry<K,V>>
- Enclosing class:
- FastHashMap<K,V>
private class FastHashMap.EntryIterator extends java.lang.Object implements java.util.Iterator<FastHashMap.Entry<K,V>>
-
-
Field Summary
Fields Modifier and Type Field Description private intindex
-
Constructor Summary
Constructors Modifier Constructor Description privateEntryIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()private voidinc()FastHashMap.Entry<K,V>next()private booleanreadable()voidremove()
-
-
-
Method Detail
-
readable
private boolean readable()
-
inc
private void inc()
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
next
public FastHashMap.Entry<K,V> next()
- Specified by:
nextin interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
-