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.exml Navigation for EXML trees. 
org.jaxen.expr Interfaces and default implementations for XPath expression components. 
org.jaxen.jdom Navigation for JDOM trees. 
org.jaxen.pattern Defines XSLT Pattern objects. 
 

Uses of JaxenException in org.jaxen
 

Subclasses of JaxenException in org.jaxen
 class FunctionCallException
          FunctionCallException is thrown if an exception occurs during the evaluation of a function.
 class UnresolvableException
          Used 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
 Object XPath.evaluate(Object context)
          Evaluate this XPath against a given context.
 List XPath.selectNodes(Object context)
          Select all nodes that are selectable by this XPath expression.
 Object XPath.selectSingleNode(Object context)
          Select only the first node that is selectable by this XPath expression.
 String XPath.valueOf(Object context)
          Deprecated. As of Jaxen 1.0 RC1 please use instead
 String XPath.stringValueOf(Object context)
          Retrieve a string-value interpretation of this XPath expression when evaluated against a given context.
 boolean XPath.booleanValueOf(Object context)
          Retrieve a boolean-value interpretation of this XPath expression when evaluated against a given context.
 Number XPath.numberValueOf(Object context)
          Retrieve a number-value interpretation of this XPath expression when evaluated against a given context.
 void XPath.addNamespace(String prefix, String uri)
          Add a namespace prefix-to-URI mapping for this XPath expression.
 void JaxenHandler.startXPath()
           
 void JaxenHandler.endXPath()
           
 void JaxenHandler.startPathExpr()
           
 void JaxenHandler.endPathExpr()
           
 void JaxenHandler.startAbsoluteLocationPath()
           
 void JaxenHandler.endAbsoluteLocationPath()
           
 void JaxenHandler.startRelativeLocationPath()
           
 void JaxenHandler.endRelativeLocationPath()
           
protected  void JaxenHandler.endLocationPath()
           
 void JaxenHandler.startNameStep(int axis, String prefix, String localName)
           
 void JaxenHandler.endNameStep()
           
 void JaxenHandler.startTextNodeStep(int axis)
           
 void JaxenHandler.endTextNodeStep()
           
 void JaxenHandler.startCommentNodeStep(int axis)
           
 void JaxenHandler.endCommentNodeStep()
           
 void JaxenHandler.startAllNodeStep(int axis)
           
 void JaxenHandler.endAllNodeStep()
           
 void JaxenHandler.startProcessingInstructionNodeStep(int axis, String name)
           
 void JaxenHandler.endProcessingInstructionNodeStep()
           
 void JaxenHandler.startPredicate()
           
 void JaxenHandler.endPredicate()
           
 void JaxenHandler.startFilterExpr()
           
 void JaxenHandler.endFilterExpr()
           
 void JaxenHandler.startOrExpr()
           
 void JaxenHandler.endOrExpr(boolean create)
           
 void JaxenHandler.startAndExpr()
           
 void JaxenHandler.endAndExpr(boolean create)
           
 void JaxenHandler.startEqualityExpr()
           
 void JaxenHandler.endEqualityExpr(int operator)
           
 void JaxenHandler.startRelationalExpr()
           
 void JaxenHandler.endRelationalExpr(int operator)
           
 void JaxenHandler.startAdditiveExpr()
           
 void JaxenHandler.endAdditiveExpr(int operator)
           
 void JaxenHandler.startMultiplicativeExpr()
           
 void JaxenHandler.endMultiplicativeExpr(int operator)
           
 void JaxenHandler.startUnaryExpr()
           
 void JaxenHandler.endUnaryExpr(int operator)
           
 void JaxenHandler.startUnionExpr()
           
 void JaxenHandler.endUnionExpr(boolean create)
           
 void JaxenHandler.number(int number)
           
 void JaxenHandler.number(double number)
           
 void JaxenHandler.literal(String literal)
           
 void JaxenHandler.variableReference(String prefix, String variableName)
           
 void JaxenHandler.startFunction(String prefix, String functionName)
           
 void JaxenHandler.endFunction()
           
 Object BaseXPath.evaluate(Object node)
          Evaluate this XPath against a given context.
 List BaseXPath.selectNodes(Object node)
          Select all nodes that are selectable by this XPath expression.
 Object BaseXPath.selectSingleNode(Object node)
          Select only the first node that is selectable by this XPath expression.
 String BaseXPath.valueOf(Object node)
           
 String BaseXPath.stringValueOf(Object node)
           
 boolean BaseXPath.booleanValueOf(Object node)
          Retrieve a boolean-value interpretation of this XPath expression when evaluated against a given context.
 Number BaseXPath.numberValueOf(Object node)
          Retrieve a number-value interpretation of this XPath expression when evaluated against a given context.
 void BaseXPath.addNamespace(String prefix, String uri)
          Add a namespace prefix-to-URI mapping for this XPath expression.
protected  List BaseXPath.selectNodesForContext(Context context)
          Select all nodes that are selectable by this XPath expression on the given Context object.
protected  Object BaseXPath.selectSingleNodeForContext(Context context)
          Select only the first node that is selectable by this XPath expression.
 

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)
          Construct given 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.exml
 

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

Uses of JaxenException in org.jaxen.expr
 

Methods in org.jaxen.expr that throw JaxenException
 Object DefaultAbsoluteLocationPath.evaluate(Context context)
           
 XPathExpr XPathFactory.createXPath(Expr rootExpr)
           
 PathExpr XPathFactory.createPathExpr(FilterExpr filterExpr, LocationPath locationPath)
           
 LocationPath XPathFactory.createRelativeLocationPath()
           
 LocationPath XPathFactory.createAbsoluteLocationPath()
           
 BinaryExpr XPathFactory.createOrExpr(Expr lhs, Expr rhs)
           
 BinaryExpr XPathFactory.createAndExpr(Expr lhs, Expr rhs)
           
 BinaryExpr XPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
           
 BinaryExpr XPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
           
 BinaryExpr XPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
           
 BinaryExpr XPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
           
 Expr XPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
           
 UnionExpr XPathFactory.createUnionExpr(Expr lhs, Expr rhs)
           
 FilterExpr XPathFactory.createFilterExpr(Expr expr)
           
 FunctionCallExpr XPathFactory.createFunctionCallExpr(String prefix, String functionName)
           
 NumberExpr XPathFactory.createNumberExpr(int number)
           
 NumberExpr XPathFactory.createNumberExpr(double number)
           
 LiteralExpr XPathFactory.createLiteralExpr(String literal)
           
 VariableReferenceExpr XPathFactory.createVariableReferenceExpr(String prefix, String variableName)
           
 Step XPathFactory.createNameStep(int axis, String prefix, String localName)
           
 Step XPathFactory.createAllNodeStep(int axis)
           
 Step XPathFactory.createCommentNodeStep(int axis)
           
 Step XPathFactory.createTextNodeStep(int axis)
           
 Step XPathFactory.createProcessingInstructionNodeStep(int axis, String name)
           
 Predicate XPathFactory.createPredicate(Expr predicateExpr)
           
 Object Predicate.evaluate(Context context)
           
 boolean DefaultFilterExpr.asBoolean(Context context)
          Returns true if the current filter matches at least one of the context nodes
 Object DefaultFilterExpr.evaluate(Context context)
           
 List DefaultXPathExpr.asList(Context context)
           
 boolean FilterExpr.asBoolean(Context context)
          Evaluates the filter expression on the current context and returns true if at least one node matches.
 List XPathExpr.asList(Context context)
           
 Object Expr.evaluate(Context context)
           
 Object DefaultUnionExpr.evaluate(Context context)
           
 XPathExpr DefaultXPathFactory.createXPath(Expr rootExpr)
           
 PathExpr DefaultXPathFactory.createPathExpr(FilterExpr filterExpr, LocationPath locationPath)
           
 LocationPath DefaultXPathFactory.createRelativeLocationPath()
           
 LocationPath DefaultXPathFactory.createAbsoluteLocationPath()
           
 BinaryExpr DefaultXPathFactory.createOrExpr(Expr lhs, Expr rhs)
           
 BinaryExpr DefaultXPathFactory.createAndExpr(Expr lhs, Expr rhs)
           
 BinaryExpr DefaultXPathFactory.createEqualityExpr(Expr lhs, Expr rhs, int equalityOperator)
           
 BinaryExpr DefaultXPathFactory.createRelationalExpr(Expr lhs, Expr rhs, int relationalOperator)
           
 BinaryExpr DefaultXPathFactory.createAdditiveExpr(Expr lhs, Expr rhs, int additiveOperator)
           
 BinaryExpr DefaultXPathFactory.createMultiplicativeExpr(Expr lhs, Expr rhs, int multiplicativeOperator)
           
 Expr DefaultXPathFactory.createUnaryExpr(Expr expr, int unaryOperator)
           
 UnionExpr DefaultXPathFactory.createUnionExpr(Expr lhs, Expr rhs)
           
 FilterExpr DefaultXPathFactory.createFilterExpr(Expr expr)
           
 FunctionCallExpr DefaultXPathFactory.createFunctionCallExpr(String prefix, String functionName)
           
 NumberExpr DefaultXPathFactory.createNumberExpr(int number)
           
 NumberExpr DefaultXPathFactory.createNumberExpr(double number)
           
 LiteralExpr DefaultXPathFactory.createLiteralExpr(String literal)
           
 VariableReferenceExpr DefaultXPathFactory.createVariableReferenceExpr(String prefix, String variable)
           
 Step DefaultXPathFactory.createNameStep(int axis, String prefix, String localName)
           
 Step DefaultXPathFactory.createTextNodeStep(int axis)
           
 Step DefaultXPathFactory.createCommentNodeStep(int axis)
           
 Step DefaultXPathFactory.createAllNodeStep(int axis)
           
 Step DefaultXPathFactory.createProcessingInstructionNodeStep(int axis, String piName)
           
 Predicate DefaultXPathFactory.createPredicate(Expr predicateExpr)
           
 

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
abstract  boolean Pattern.matches(Object node, Context context)
           
 void PatternHandler.endXPath()
           
 void PatternHandler.endPathExpr()
           
 void PatternHandler.startAbsoluteLocationPath()
           
 void PatternHandler.endAbsoluteLocationPath()
           
 void PatternHandler.startRelativeLocationPath()
           
 void PatternHandler.endRelativeLocationPath()
           
protected  void PatternHandler.endLocationPath()
           
 void PatternHandler.startNameStep(int axis, String prefix, String localName)
           
 void PatternHandler.startTextNodeStep(int axis)
           
 void PatternHandler.startCommentNodeStep(int axis)
           
 void PatternHandler.startAllNodeStep(int axis)
           
 void PatternHandler.startProcessingInstructionNodeStep(int axis, String name)
           
 void PatternHandler.startUnionExpr()
           
 void PatternHandler.endUnionExpr(boolean create)
           
 boolean UnionPattern.matches(Object node, Context context)
           
static Pattern PatternParser.parse(String text)
           
protected static Pattern PatternParser.convertExpr(Expr expr)
           
protected static LocationPathPattern PatternParser.convertExpr(LocationPath locationPath)
           
protected static LocationPathPattern PatternParser.convertStep(LocationPathPattern path, Step step)
           
protected static LocationPathPattern PatternParser.convertDefaultStep(LocationPathPattern path, DefaultStep step)
           
 void LocationPathPattern.setNodeTest(NodeTest nodeTest)
          Allows the NodeTest to be set
 boolean LocationPathPattern.matches(Object node, Context context)
           
 



Copyright © 2002 bob mcwhirter & James Strachan. All Rights Reserved. Hosted by

SourceForge Logo