com.github.megatronking.svg.generator.xml.ObjectXmlSAXReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svg-generator Show documentation
Show all versions of svg-generator Show documentation
A SVG Support Library for Android
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