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