Interface ResettableListIterator<E>
-
- Type Parameters:
E
- the type of elements returned by this iterator
- All Superinterfaces:
java.util.Iterator<E>
,java.util.ListIterator<E>
,OrderedIterator<E>
,ResettableIterator<E>
- All Known Implementing Classes:
ListIteratorWrapper
public interface ResettableListIterator<E> extends java.util.ListIterator<E>, ResettableIterator<E>, OrderedIterator<E>
Defines a list iterator that can be reset back to an initial state.This interface allows an iterator to be repeatedly reused.
- Since:
- 3.0
-
-
Method Summary
-
Methods inherited from interface java.util.ListIterator
add, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove, set
-
Methods inherited from interface org.apache.openjpa.lib.util.collections.OrderedIterator
hasPrevious, previous
-
Methods inherited from interface org.apache.openjpa.lib.util.collections.ResettableIterator
reset
-
-