
xmlparser.utils.CheckedIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
The newest version!
package xmlparser.utils;
public interface CheckedIterator {
boolean hasNext() throws Exception;
T next() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy