- java.lang.Object
-
- org.jcodings.util.Hash.HashEntryIterator
-
- All Implemented Interfaces:
Iterable<Hash.HashEntry<V>>,Iterator<Hash.HashEntry<V>>
- Direct Known Subclasses:
CaseInsensitiveBytesHash.CaseInsensitiveBytesHashEntryIterator
public class Hash.HashEntryIterator extends Object implements Iterator<Hash.HashEntry<V>>, Iterable<Hash.HashEntry<V>>
-
-
Constructor Summary
Constructors Constructor Description HashEntryIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Iterator<Hash.HashEntry<V>>iterator()Hash.HashEntry<V>next()voidremove()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
iterator
public Iterator<Hash.HashEntry<V>> iterator()
- Specified by:
iteratorin interfaceIterable<Hash.HashEntry<V>>
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<Hash.HashEntry<V>>
-
next
public Hash.HashEntry<V> next()
- Specified by:
nextin interfaceIterator<Hash.HashEntry<V>>
-
remove
public void remove()
- Specified by:
removein interfaceIterator<Hash.HashEntry<V>>
-
-