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 int
index
-
Constructor Summary
Constructors Modifier Constructor Description private
EntryIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
private void
inc()
FastHashMap.Entry<K,V>
next()
private boolean
readable()
void
remove()
-
-
-
Method Detail
-
readable
private boolean readable()
-
inc
private void inc()
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
next
public FastHashMap.Entry<K,V> next()
- Specified by:
next
in interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
remove
public void remove()
- Specified by:
remove
in interfacejava.util.Iterator<FastHashMap.Entry<K,V>>
-
-