Package com.github.tommyettinger.ds
Class LongFloatMap.EntryIterator
java.lang.Object
com.github.tommyettinger.ds.LongFloatMap.MapIterator
com.github.tommyettinger.ds.LongFloatMap.EntryIterator
- All Implemented Interfaces:
Iterable<LongFloatMap.Entry>,Iterator<LongFloatMap.Entry>
- Enclosing class:
- LongFloatMap
public static class LongFloatMap.EntryIterator
extends LongFloatMap.MapIterator
implements Iterable<LongFloatMap.Entry>, Iterator<LongFloatMap.Entry>
-
Field Summary
FieldsFields inherited from class com.github.tommyettinger.ds.LongFloatMap.MapIterator
currentIndex, hasNext, INDEX_ILLEGAL, INDEX_ZERO, map, nextIndex, valid -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.github.tommyettinger.ds.LongFloatMap.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
- Specified by:
iteratorin interfaceIterable<LongFloatMap.Entry>
-
next
Note the same entry instance is returned each time this method is called.- Specified by:
nextin interfaceIterator<LongFloatMap.Entry>
-
hasNext
public boolean hasNext()Description copied from class:LongFloatMap.MapIteratorReturnstrueif the iteration has more elements. (In other words, returnstrueif next() would return an element rather than throwing an exception.)- Specified by:
hasNextin interfaceIterator<LongFloatMap.Entry>- Overrides:
hasNextin classLongFloatMap.MapIterator- Returns:
trueif the iteration has more elements
-