xmlparser.utils.Interfaces 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.
package xmlparser.utils;
import xmlparser.XmlParser;
import xmlparser.parsing.ObjectDeserializer;
import xmlparser.parsing.ObjectSerializer;
public enum Interfaces {;
public interface AccessXmlParser {
XmlParser getXmlParser();
}
public interface AccessSerializers {
boolean hasSerializer(Class> type);
ObjectSerializer getSerializer(Class> type);
}
public interface AccessDeserializers {
ObjectDeserializer getDeserializer(Class> type);
}
public interface ParserConfiguration {
boolean shouldEncodeUTF8();
boolean shouldPrettyPrint();
}
public interface CheckedIterator {
boolean hasNext() throws Exception;
T next() throws Exception;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy