Package opennlp.tools.util
Interface ResetableIterator<E>
-
- All Superinterfaces:
java.util.Iterator<E>
public interface ResetableIterator<E> extends java.util.Iterator<E>
This interface makes anIterator
resetable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
reset()
Sets theIterator
back to the first retrieved element, the seen sequence of elements must be repeated.
-