net.sourceforge.segment.srx.SrxParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of segment Show documentation
Show all versions of segment Show documentation
Program / library used to split text into segments.
package net.sourceforge.segment.srx;
import java.io.Reader;
/**
* Represents SRX parser that can parse SRX document from reader.
*
* @author loomchild
*/
public interface SrxParser {
/**
* Parses SRX document.
*
* @param reader reader from which read the document
* @return initialized SRX document
*/
public SrxDocument parse(Reader reader);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy