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

xmlparser.utils.CheckedIterator Maven / Gradle / Ivy

The newest version!
package xmlparser.utils;

public interface CheckedIterator {
    boolean hasNext() throws Exception;
    T next() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy