Package com.github.tommyettinger.ds
Class LongObjectMap.EntryIterator<V>
java.lang.Object
com.github.tommyettinger.ds.LongObjectMap.MapIterator<V>
com.github.tommyettinger.ds.LongObjectMap.EntryIterator<V>
- All Implemented Interfaces:
Iterable<LongObjectMap.Entry<V>>,Iterator<LongObjectMap.Entry<V>>
- Enclosing class:
- LongObjectMap<V>
public static class LongObjectMap.EntryIterator<V>
extends LongObjectMap.MapIterator<V>
implements Iterable<LongObjectMap.Entry<V>>, Iterator<LongObjectMap.Entry<V>>
-
Field Summary
FieldsFields inherited from class com.github.tommyettinger.ds.LongObjectMap.MapIterator
currentIndex, hasNext, INDEX_ILLEGAL, INDEX_ZERO, map, nextIndex, valid -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.github.tommyettinger.ds.LongObjectMap.MapIterator
remove, resetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Field Details
-
entry
-
-
Constructor Details
-
EntryIterator
-
-
Method Details
-
iterator
-
next
Note the same entry instance is returned each time this method is called. -
hasNext
public boolean hasNext()Description copied from class:LongObjectMap.MapIteratorReturnstrueif the iteration has more elements. (In other words, returnstrueif next() would return an element rather than throwing an exception.)
-