io.fair_acc.sample.financial.dos.ResettableIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of samples Show documentation
Show all versions of samples Show documentation
Small sample applications to showcase the features of the chart-fx library.
The newest version!
package io.fair_acc.sample.financial.dos;
import java.util.Iterator;
/**
* Defines an iterator that can be reset back to an initial state.
*
* This interface allows an iterator to be repeatedly reused.
*
* @param the type to iterate over
* @version $Id: ResettableIterator.java 1543263 2013-11-19 00:47:55Z ggregory $
* @since 3.0
*/
public interface ResettableIterator extends Iterator {
/**
* Resets the iterator back to the position at which the iterator
* was created.
*/
void reset();
}