Class LongArrayList.InternalLongIterator
- java.lang.Object
-
- org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.InternalLongIterator
-
- All Implemented Interfaces:
LongIterator
,MutableLongIterator
- Enclosing class:
- LongArrayList
private class LongArrayList.InternalLongIterator extends java.lang.Object implements MutableLongIterator
-
-
Field Summary
Fields Modifier and Type Field Description private int
currentIndex
Index of element to be returned by subsequent call to next.private int
lastIndex
-
Constructor Summary
Constructors Modifier Constructor Description private
InternalLongIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
long
next()
void
remove()
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceLongIterator
-
next
public long next()
- Specified by:
next
in interfaceLongIterator
-
remove
public void remove()
- Specified by:
remove
in interfaceMutableLongIterator
-
-