xmlparser.xpath.TextSegment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
package xmlparser.xpath;
import static xmlparser.utils.Constants.SEGMENT_EXPRESSION;
/**
* Adapted from xml-lif (https://github.com/liflab/xml-lif) by Sylvain Hallé
*/
public class TextSegment extends Segment {
@Override
public String toString()
{
return SEGMENT_EXPRESSION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy