Class MutableIterator<T>
java.lang.Object
org.eclipse.collections.impl.list.mutable.MutableIterator<T>
- All Implemented Interfaces:
Iterator<T>
- Direct Known Subclasses:
MutableListIterator
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected int
Index of element to be returned by subsequent call to next.protected int
Index of element returned by most recent call to next or previous. -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
currentIndex
protected int currentIndexIndex of element to be returned by subsequent call to next. -
lastIndex
protected int lastIndexIndex of element returned by most recent call to next or previous. Reset to -1 if this element is deleted by a call to remove. -
list
-
-
Constructor Details
-
MutableIterator
-
-
Method Details