Uses of Class
org.springframework.xml.xpath.XPathException
Packages that use XPathException
Package
Description
Provides XPathTemplate implementations, and various classes for XPath evaluation using
JAXP 1.3, and Jaxen.
-
Uses of XPathException in org.springframework.xml.xpath
Subclasses of XPathException in org.springframework.xml.xpathModifier and TypeClassDescriptionclassException throws when a XPath expression cannot be parsed.Methods in org.springframework.xml.xpath that throw XPathExceptionModifier and TypeMethodDescriptionfinal voidAbstractXPathTemplate.evaluate(String expression, Source context, NodeCallbackHandler callbackHandler) <T> List<T> JaxenXPathTemplate.evaluate(String expression, Source context, NodeMapper<T> nodeMapper) <T> List<T> Jaxp13XPathTemplate.evaluate(String expression, Source context, NodeMapper<T> nodeMapper) <T> List<T> XPathExpression.evaluate(Node node, NodeMapper<T> nodeMapper) Evaluates the given expression, mapping each resultNodeobjects to a Java object via aNodeMapper.voidXPathOperations.evaluate(String expression, Source context, NodeCallbackHandler callbackHandler) Evaluates the given expression, handling the resultNodeobjects on a per-node basis with aNodeCallbackHandler.<T> List<T> XPathOperations.evaluate(String expression, Source context, NodeMapper<T> nodeMapper) Evaluates the given expression, mapping each resultNodeobjects to a Java object via aNodeMapper.booleanJaxenXPathTemplate.evaluateAsBoolean(String expression, Source context) booleanJaxp13XPathTemplate.evaluateAsBoolean(String expression, Source context) booleanXPathExpression.evaluateAsBoolean(Node node) Evaluates the given expression as aboolean.booleanXPathOperations.evaluateAsBoolean(String expression, Source context) Evaluates the given expression as aboolean.doubleJaxenXPathTemplate.evaluateAsDouble(String expression, Source context) doubleJaxp13XPathTemplate.evaluateAsDouble(String expression, Source context) doubleXPathOperations.evaluateAsDouble(String expression, Source context) Evaluates the given expression as adouble.JaxenXPathTemplate.evaluateAsNode(String expression, Source context) @Nullable NodeJaxp13XPathTemplate.evaluateAsNode(String expression, Source context) @Nullable NodeXPathExpression.evaluateAsNode(Node node) Evaluates the given expression as aNode.@Nullable NodeXPathOperations.evaluateAsNode(String expression, Source context) Evaluates the given expression as aNode.JaxenXPathTemplate.evaluateAsNodeList(String expression, Source context) Jaxp13XPathTemplate.evaluateAsNodeList(String expression, Source context) XPathExpression.evaluateAsNodeList(Node node) Evaluates the given expression, and returns allNodeobjects that conform to it.XPathOperations.evaluateAsNodeList(String expression, Source context) Evaluates the given expression as a list ofNodeobjects.doubleXPathExpression.evaluateAsNumber(Node node) Evaluates the given expression as a number (double).<T> @Nullable TJaxenXPathTemplate.evaluateAsObject(String expression, Source context, NodeMapper<T> nodeMapper) <T> @Nullable TJaxp13XPathTemplate.evaluateAsObject(String expression, Source context, NodeMapper<T> nodeMapper) <T> @Nullable TXPathExpression.evaluateAsObject(Node node, NodeMapper<T> nodeMapper) Evaluates the given expression, mapping a singleNoderesult to a Java object via aNodeMapper.<T> @Nullable TXPathOperations.evaluateAsObject(String expression, Source context, NodeMapper<T> nodeMapper) Evaluates the given expression, mapping a singleNoderesult to a Java object via aNodeMapper.JaxenXPathTemplate.evaluateAsString(String expression, Source context) @Nullable StringJaxp13XPathTemplate.evaluateAsString(String expression, Source context) @Nullable StringXPathExpression.evaluateAsString(Node node) Evaluates the given expression as a String.@Nullable StringXPathOperations.evaluateAsString(String expression, Source context) Evaluates the given expression as aString.