![JAR search and dependency download from the Maven repository](/logo.png)
org.xs4j.xmlspitter.XMLSpitterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlslurper Show documentation
Show all versions of xmlslurper Show documentation
An attempt to port parsing capabilities offered by Groovy XMLSlurper into the Java world. The following is not planned to be accurate projection, instead the most useful functions will be implemented.
The newest version!
package org.xs4j.xmlspitter;
/**
* Created by mturski on 12/8/2016.
*/
public interface XMLSpitterFactory {
String DEFAULT_XML_DOCUMENT_VERSION = "1.0";
String DEFAULT_XML_DOCUMENT_ENCODING = "UTF-8";
/**
* Returns a new instance of {@link XMLSpitter}
*
* @return a new instance of XMLSpitter
*/
XMLSpitter createXMLSpitter();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy