All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fair_acc.sample.financial.dos.ResettableIterator Maven / Gradle / Ivy

Go to download

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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy