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

js.web.dom.XPathEvaluatorBase Maven / Gradle / Ivy

package js.web.dom;

import js.lang.Any;

import javax.annotation.Nullable;


public interface XPathEvaluatorBase extends Any {
    XPathExpression createExpression(String expression, XPathNSResolver resolver);

    XPathExpression createExpression(String expression);

    XPathNSResolver createNSResolver(Node nodeResolver);

    XPathResult evaluate(String expression, Node contextNode, @Nullable XPathNSResolver resolver, int type, XPathResult result);

    XPathResult evaluate(String expression, Node contextNode, @Nullable XPathNSResolver resolver, int type);

    XPathResult evaluate(String expression, Node contextNode, XPathNSResolver resolver);

    XPathResult evaluate(String expression, Node contextNode);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy