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

org.xs4j.xmlspitter.InternalSpitterFactory Maven / Gradle / Ivy

Go to download

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 1/5/2017.
 */
public final class InternalSpitterFactory implements XMLSpitterFactory {
    public static XMLSpitterFactory getInstance() {
        return new InternalSpitterFactory();
    }

    private InternalSpitterFactory() {
    }

    @Override
    public final XMLSpitter createXMLSpitter() {
        return new XMLSpitterImpl(new XMLSpitterImpl.InternalStreamProvider());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy