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

xmlparser.utils.Interfaces Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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