Uses of Class
org.jaxen.JaxenException

Packages that use JaxenException
org.jaxen This package defines the core Jaxen API to the XPath engine. 
org.jaxen.dom Navigation for W3C DOM trees. 
org.jaxen.dom4j Navigation for dom4j trees. 
org.jaxen.expr Interfaces and default implementations for XPath expression components. 
org.jaxen.javabean Navigation for JavaBeans. 
org.jaxen.jdom Navigation for JDOM trees. 
org.jaxen.pattern Defines XSLT Pattern objects. 
org.jaxen.xom Navigation for XOM trees. 
 

Uses of JaxenException in org.jaxen
 

Subclasses of JaxenException in org.jaxen
 class FunctionCallException
          Thrown if an exception occurs during the evaluation of a function.
 class UnresolvableException
          Thrown when a function-call or variable-reference, or any other lookup based on namespace and local name, couldn't be resolved.
 class UnsupportedAxisException
          Indicates attempt to evaluate an XPath axis that is unsupported by the current object-model.
 class XPathSyntaxException
          Indicates an error during parsing of an XPath expression.
 

Methods in org.jaxen that throw JaxenException
 void XPath.addNamespace(String prefix, String uri)
          Add a namespace prefix-to-URI mapping for this XPath expression.
 void BaseXPath.addNamespace(String prefix, String uri)
          Add a namespace prefix-to-URI mapping for this XPath expression.
 boolean XPath.booleanValueOf(Object context)
          Retrieve the boolean value of the first node in document order returned by this XPath expression when evaluated in the given context.
 boolean BaseXPath.booleanValueOf(Object node)
          Retrieve a boolean-value interpretation of this XPath expression when evaluated against a given context.
 void JaxenHandler.endAbsoluteLocationPath()
           
 void JaxenHandler.endAdditiveExpr(int operator)
           
 void JaxenHandler.endAndExpr(boolean create)
           
 void JaxenHandler.endEqualityExpr(int operator)
           
 void JaxenHandler.endFilterExpr()
           
protected  void JaxenHandler.endLocationPath()
           
 void JaxenHandler.endMultiplicativeExpr(int operator)
           
 void JaxenHandler.endOrExpr(boolean create)
           
 void JaxenHandler.endPathExpr()
           
 void JaxenHandler.endPredicate()
           
 void JaxenHandler.endRelationalExpr(int operator)
           
 void JaxenHandler.endRelativeLocationPath()
           
 void JaxenHandler.endUnaryExpr(int operator)
           
 void JaxenHandler.endUnionExpr(boolean create)
           
 void JaxenHandler.endXPath()
           
 Object XPath.evaluate(Object context)
          Evaluate this XPath against the given context.
 Object BaseXPath.evaluate(Object context)
          Evaluate this XPath against a given context.
 void JaxenHandler.literal(String literal)
           
 void JaxenHandler.number(double number)
           
 void JaxenHandler.number(int number)
           
 Number XPath.numberValueOf(Object context)
          Retrieve the number-value of the first node in document order returned by this XPath expression when evaluated in the given context.
 Number BaseXPath.numberValueOf(Object node)
          Retrieve a number-value interpretation of this XPath expression when evaluated against a given context.
 List XPath.selectNodes(Object context)
          Select all nodes that are selectable by this XPath expression.
 List BaseXPath.selectNodes(Object node)
          Select all nodes that are selected by this XPath expression.
protected  List BaseXPath.selectNodesForContext(Context context)
          Select all nodes that match this XPath expression on the given Context object.
 Object XPath.selectSingleNode(Object context)
           Return the first node in document order that is selected by this XPath expression.
 Object BaseXPath.selectSingleNode(Object node)
          Select only the first node selected by this XPath expression.
protected  Object BaseXPath.selectSingleNodeForContext(Context context)
          Return only the first node that is selected by this XPath expression.
 void JaxenHandler.startAbsoluteLocationPath()
           
 void JaxenHandler.startAllNodeStep(int axis)
           
 void JaxenHandler.startCommentNodeStep(int axis)
           
 void JaxenHandler.startFunction(String prefix, String functionName)
           
 void JaxenHandler.startNameStep(int axis, String prefix, String localName)
           
 void JaxenHandler.startProcessingInstructionNodeStep(int axis, String name)
           
 void JaxenHandler.startRelativeLocationPath()
           
 void JaxenHandler.startTextNodeStep(int axis)
           
 String XPath.stringValueOf(Object context)
          Retrieve a string-value interpretation of this XPath expression when evaluated against the given context.
 String BaseXPath.stringValueOf(Object node)
          Retrieves the string-value of the result of evaluating this XPath expression when evaluated against the specified context.
 String XPath.valueOf(Object context)
          Deprecated. use XPath.stringValueOf(Object) instead
 String BaseXPath.valueOf(Object node)
          Deprecated. replaced by BaseXPath.stringValueOf(java.lang.Object)
 void JaxenHandler.variableReference(String prefix, String variableName)
           
 

Constructors in org.jaxen that throw JaxenException
BaseXPath(String xpathExpr)
          Construct given an XPath expression string.
BaseXPath(String xpathExpr, Navigator navigator)
          Construct given an XPath expression string.
 

Uses of JaxenException in org.jaxen.dom
 

Constructors in org.jaxen.dom that throw JaxenException
DOMXPath(String xpathExpr)
          Create a new DOMXPath from an XPath expression string.
 

Uses of JaxenException in org.jaxen.dom4j
 

Constructors in org.jaxen.dom4j that throw JaxenException
Dom4jXPath(String xpathExpr)
          Construct given an XPath expression string.
 

Uses of JaxenException in org.jaxen.expr
 

Methods in org.jaxen.expr that throw JaxenException
 List PredicateSet.applyPredicate(Predicate predicate, List nodes2Filter, ContextSupport support)
           
 boolean FilterExpr.asBoolean(Context context)
          Evaluates the filter expression on the current context and returns true if at least one node matches.
 boolean DefaultFilterExpr.asBoolean(Context context)
          Deprecated. Returns true if the current filter matches at least one of the context nodes
 List XPathExpr.asList(Context context)
          Evaluates the expression and returns a list cintaing the resulting nodes, or a singleton list containing a Double, String, or Boolean.
 List DefaultXPathExpr.asList(Context context)
          Deprecated.  
 LocationPath XPathFactory.createAbsoluteLocationPath()
          Create a new empty absolute location path.
 LocationPath DefaultXPathFactory.createAbsoluteLocationPath()
           
 BinaryExpr XPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
          Returns a new XPath additive expression.
 BinaryExpr DefaultXPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
           
 Step XPathFactory.createAllNodeStep(int axis)
          Create a step with a node() node-test.
 Step DefaultXPathFactory.createAllNodeStep(int axis)
           
 BinaryExpr XPathFactory.createAndExpr(Expr lhs, Expr rhs)
          Returns a new XPath And expression.
 BinaryExpr DefaultXPathFactory.createAndExpr(Expr lhs, Expr rhs)
           
 Step XPathFactory.createCommentNodeStep(int axis)
          Create a step with a comment() node-test.
 Step DefaultXPathFactory.createCommentNodeStep(int axis)
           
 BinaryExpr XPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
          Returns a new XPath equality expression.
 BinaryExpr DefaultXPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
           
 FilterExpr XPathFactory.createFilterExpr(Expr expr)
          Returns a new XPath filter expression.
 FilterExpr DefaultXPathFactory.createFilterExpr(Expr expr)
           
 FunctionCallExpr XPathFactory.createFunctionCallExpr(String prefix, String functionName)
          Create a new function call expression.
 FunctionCallExpr DefaultXPathFactory.createFunctionCallExpr(String prefix, String functionName)
           
 LiteralExpr XPathFactory.createLiteralExpr(String literal)
          Create a string literal expression.
 LiteralExpr DefaultXPathFactory.createLiteralExpr(String literal)
           
 BinaryExpr XPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
          Returns a new XPath multiplicative expression.
 BinaryExpr DefaultXPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
           
 Step XPathFactory.createNameStep(int axis, String prefix, String localName)
          Create a step with a named node-test.
 Step DefaultXPathFactory.createNameStep(int axis, String prefix, String localName)
           
 NumberExpr XPathFactory.createNumberExpr(double number)
          Create a number expression.
 NumberExpr DefaultXPathFactory.createNumberExpr(double number)
           
 NumberExpr XPathFactory.createNumberExpr(int number)
          Create a number expression.
 NumberExpr DefaultXPathFactory.createNumberExpr(int number)
           
 BinaryExpr XPathFactory.createOrExpr(Expr lhs, Expr rhs)
          Returns a new XPath Or expression.
 BinaryExpr DefaultXPathFactory.createOrExpr(Expr lhs, Expr rhs)
           
 PathExpr XPathFactory.createPathExpr(FilterExpr filterExpr, LocationPath locationPath)
          Create a new path expression.
 PathExpr DefaultXPathFactory.createPathExpr(FilterExpr filterExpr, LocationPath locationPath)
           
 Predicate XPathFactory.createPredicate(Expr predicateExpr)
          Create from the supplied expression.
 Predicate DefaultXPathFactory.createPredicate(Expr predicateExpr)
           
 PredicateSet XPathFactory.createPredicateSet()
          Create an empty predicate set.
 PredicateSet DefaultXPathFactory.createPredicateSet()
           
 Step XPathFactory.createProcessingInstructionNodeStep(int axis, String name)
          Create a step with a processing-instruction() node-test.
 Step DefaultXPathFactory.createProcessingInstructionNodeStep(int axis, String piName)
           
 BinaryExpr XPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
          Returns a new XPath relational expression.
 BinaryExpr DefaultXPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
           
 LocationPath XPathFactory.createRelativeLocationPath()
          Create a new empty relative location path.
 LocationPath DefaultXPathFactory.createRelativeLocationPath()
           
 Step XPathFactory.createTextNodeStep(int axis)
          Create a step with a text() node-test.
 Step DefaultXPathFactory.createTextNodeStep(int axis)
           
 Expr XPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
          Returns a new XPath unary expression.
 Expr DefaultXPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
           
 UnionExpr XPathFactory.createUnionExpr(Expr lhs, Expr rhs)
          Returns a new XPath union expression.
 UnionExpr DefaultXPathFactory.createUnionExpr(Expr lhs, Expr rhs)
           
 VariableReferenceExpr XPathFactory.createVariableReferenceExpr(String prefix, String variableName)
          Create a new variable reference expression.
 VariableReferenceExpr DefaultXPathFactory.createVariableReferenceExpr(String prefix, String variable)
           
 XPathExpr XPathFactory.createXPath(Expr rootExpr)
          Create a new XPathExpr from an Expr.
 XPathExpr DefaultXPathFactory.createXPath(Expr rootExpr)
           
 List Step.evaluate(Context context)
          For each node in the given context calls matches() for every node on the axis, then filters the result by each of the predicates.
 Object Predicate.evaluate(Context context)
          Evaluates this predicate's expression and returns the result.
 Object Expr.evaluate(Context context)
          Evaluate the expression in the given context, and return the result.
 Object DefaultUnionExpr.evaluate(Context context)
          Deprecated.  
 List DefaultStep.evaluate(Context context)
          Deprecated.  
 List DefaultNameStep.evaluate(Context context)
          Deprecated. Evaluate the context node set to find the new node set.
 Object DefaultFunctionCallExpr.evaluate(Context context)
          Deprecated.  
 Object DefaultFilterExpr.evaluate(Context context)
          Deprecated.  
 Object DefaultAbsoluteLocationPath.evaluate(Context context)
          Deprecated.  
protected  boolean PredicateSet.evaluateAsBoolean(List contextNodeSet, ContextSupport support)
          Returns true if any of the supplied nodes satisfy all the predicates in the set.
 List DefaultFunctionCallExpr.evaluateParams(Context context)
          Deprecated.  
protected  List PredicateSet.evaluatePredicates(List contextNodeSet, ContextSupport support)
          Returns all of the supplied nodes that satisfy all the predicates in the set.
protected  IterableAxis DefaultXPathFactory.getIterableAxis(int axis)
           
 boolean Step.matches(Object node, ContextSupport contextSupport)
          Performs the node-test part of evaluating the step for the given node (which must be on the axis).
 boolean DefaultNameStep.matches(Object node, ContextSupport contextSupport)
          Deprecated. Checks whether the node matches this step.
 

Uses of JaxenException in org.jaxen.javabean
 

Methods in org.jaxen.javabean that throw JaxenException
 Object JavaBeanXPath.evaluate(Object node)
           
 

Constructors in org.jaxen.javabean that throw JaxenException
JavaBeanXPath(String xpathExpr)
          Construct given an XPath expression string.
 

Uses of JaxenException in org.jaxen.jdom
 

Constructors in org.jaxen.jdom that throw JaxenException
JDOMXPath(String xpathExpr)
          Construct given an XPath expression string.
 

Uses of JaxenException in org.jaxen.pattern
 

Methods in org.jaxen.pattern that throw JaxenException
protected static LocationPathPattern PatternParser.convertDefaultStep(LocationPathPattern path, DefaultStep step)
           
protected static Pattern PatternParser.convertExpr(Expr expr)
           
protected static LocationPathPattern PatternParser.convertExpr(LocationPath locationPath)
           
protected static LocationPathPattern PatternParser.convertStep(LocationPathPattern path, Step step)
           
 void PatternHandler.endAbsoluteLocationPath()
           
protected  void PatternHandler.endLocationPath()
           
 void PatternHandler.endRelativeLocationPath()
           
 void PatternHandler.endUnionExpr(boolean create)
           
 boolean UnionPattern.matches(Object node, Context context)
           
abstract  boolean Pattern.matches(Object node, Context context)
           
 boolean LocationPathPattern.matches(Object node, Context context)
           
static Pattern PatternParser.parse(String text)
           
 void LocationPathPattern.setNodeTest(NodeTest nodeTest)
          Allows the NodeTest to be set
 

Uses of JaxenException in org.jaxen.xom
 

Constructors in org.jaxen.xom that throw JaxenException
XOMXPath(String xpathExpr)
          Construct given an XPath expression string.
 



Copyright © 2001-2007 Codehaus. All Rights Reserved.