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

com.github.megatronking.svg.generator.xml.ObjectXmlSAXReader Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
package com.github.megatronking.svg.generator.xml;

import org.dom4j.DocumentException;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;

/**
 * Read a xml file to an object.
 *
 * @author Megatron King
 * @since 2016/11/22 17:22
 */

public interface ObjectXmlSAXReader {

    T read(String filePath) throws IOException, DocumentException;

    T read(File file) throws IOException, DocumentException;

    T read(InputStream is) throws IOException, DocumentException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy