com.itelg.xpath.helper.parser.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpath-helper Show documentation
Show all versions of xpath-helper Show documentation
XPath helpers based on Xom
package com.itelg.xpath.helper.parser;
import java.io.InputStream;
public interface Parser
{
public T parse(String xml) throws Exception;
public T parse(InputStream xml) throws Exception;
}