Uses of Class
org.springframework.xml.xpath.XPathException

Packages that use XPathException
org.springframework.xml.xpath 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.xpath
 class XPathParseException
          Exception throws when a XPath expression cannot be parsed.
 

Methods in org.springframework.xml.xpath that throw XPathException
 List XPathExpression.evaluate(Node node, NodeMapper nodeMapper)
          Evaluates the given expression, mapping each result Node objects to a Java object via a NodeMapper.
 void AbstractXPathTemplate.evaluate(String expression, Source context, NodeCallbackHandler callbackHandler)
           
 void XPathOperations.evaluate(String expression, Source context, NodeCallbackHandler callbackHandler)
          Evaluates the given expression, handling the result Node objects on a per-node basis with a NodeCallbackHandler.
 List Jaxp13XPathTemplate.evaluate(String expression, Source context, NodeMapper nodeMapper)
           
 List JaxenXPathTemplate.evaluate(String expression, Source context, NodeMapper nodeMapper)
           
 List XPathOperations.evaluate(String expression, Source context, NodeMapper nodeMapper)
          Evaluates the given expression, mapping each result Node objects to a Java object via a NodeMapper.
 boolean XPathExpression.evaluateAsBoolean(Node node)
          Evaluates the given expression as a boolean.
 boolean Jaxp13XPathTemplate.evaluateAsBoolean(String expression, Source context)
           
 boolean JaxenXPathTemplate.evaluateAsBoolean(String expression, Source context)
           
 boolean XPathOperations.evaluateAsBoolean(String expression, Source context)
          Evaluates the given expression as a boolean.
 double Jaxp13XPathTemplate.evaluateAsDouble(String expression, Source context)
           
 double JaxenXPathTemplate.evaluateAsDouble(String expression, Source context)
           
 double XPathOperations.evaluateAsDouble(String expression, Source context)
          Evaluates the given expression as a double.
 Node XPathExpression.evaluateAsNode(Node node)
          Evaluates the given expression as a Node.
 Node Jaxp13XPathTemplate.evaluateAsNode(String expression, Source context)
           
 Node JaxenXPathTemplate.evaluateAsNode(String expression, Source context)
           
 Node XPathOperations.evaluateAsNode(String expression, Source context)
          Evaluates the given expression as a Node.
 List XPathExpression.evaluateAsNodeList(Node node)
          Evaluates the given expression, and returns all Node objects that conform to it.
 List Jaxp13XPathTemplate.evaluateAsNodeList(String expression, Source context)
           
 List JaxenXPathTemplate.evaluateAsNodeList(String expression, Source context)
           
 List XPathOperations.evaluateAsNodeList(String expression, Source context)
          Evaluates the given expression as a list of Node objects.
 double XPathExpression.evaluateAsNumber(Node node)
          Evaluates the given expression as a number (double).
 Object XPathExpression.evaluateAsObject(Node node, NodeMapper nodeMapper)
          Evaluates the given expression, mapping a single Node result to a Java object via a NodeMapper.
 Object Jaxp13XPathTemplate.evaluateAsObject(String expression, Source context, NodeMapper nodeMapper)
           
 Object JaxenXPathTemplate.evaluateAsObject(String expression, Source context, NodeMapper nodeMapper)
           
 Object XPathOperations.evaluateAsObject(String expression, Source context, NodeMapper nodeMapper)
          Evaluates the given expression, mapping a single Node result to a Java object via a NodeMapper.
 String XPathExpression.evaluateAsString(Node node)
          Evaluates the given expression as a String.
 String Jaxp13XPathTemplate.evaluateAsString(String expression, Source context)
           
 String JaxenXPathTemplate.evaluateAsString(String expression, Source context)
           
 String XPathOperations.evaluateAsString(String expression, Source context)
          Evaluates the given expression as a String.
 



Copyright © 2011. All Rights Reserved.