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

be.bagofwords.iterator.SimpleIterator Maven / Gradle / Ivy

package be.bagofwords.iterator;

public abstract class SimpleIterator {

    public abstract T next() throws Exception;

    public void close() throws Exception {
        //Do nothing in default implementation
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy