org.apache.commons.collections.ResettableListIterator |
Known Indirect Subclasses
|
Class Overview
Defines a list iterator that can be reset back to an initial state.
This interface allows an iterator to be repeatedly reused.
Summary
Public Methods |
abstract
void
|
reset()
Resets the iterator back to the position at which the iterator
was created.
|
[Expand]
Inherited Methods |
From interface
java.util.Iterator
abstract
boolean
|
hasNext()
|
abstract
E
|
next()
|
abstract
void
|
remove()
|
|
From interface
java.util.ListIterator
abstract
void
|
add(E arg0)
|
abstract
boolean
|
hasNext()
|
abstract
boolean
|
hasPrevious()
|
abstract
E
|
next()
|
abstract
int
|
nextIndex()
|
abstract
E
|
previous()
|
abstract
int
|
previousIndex()
|
abstract
void
|
remove()
|
abstract
void
|
set(E arg0)
|
|
From interface
org.apache.commons.collections.ResettableIterator
abstract
void
|
reset()
Resets the iterator back to the position at which the iterator
was created.
|
|
Public Methods
public
abstract
void
reset
()
Resets the iterator back to the position at which the iterator
was created.