Uses of Class
org.jaxen.saxpath.SAXPathException
Packages that use SAXPathException
Package
Description
This package defines the core Jaxen API to the XPath engine.
Navigation for W3C DOM trees.
Navigation for dom4j trees.
Navigation for JavaBeans.
Navigation for JDOM trees.
Defines XSLT Pattern objects.
Classes related to the event-based parsing and handling
of XPath expressions.
jaxen
implementation of the SAXPath functionality.
Helper classes for instantiating XPathReaders.
Navigation for XOM trees.
-
Uses of SAXPathException in org.jaxen
Subclasses of SAXPathException in org.jaxenModifier and TypeClassDescriptionclassThrown if an exception occurs during the evaluation of a function.classGeneric Jaxen exception.classThrown when a function-call or variable-reference, or any other lookup based on namespace and local name, couldn't be resolved.classIndicates attempt to evaluate an XPath axis that is unsupported by the current object-model.classIndicates an error during parsing of an XPath expression.Methods in org.jaxen that throw SAXPathExceptionModifier and TypeMethodDescriptionNavigator.parseXPath(String xpath) Returns a parsed form of the given XPath string, which will be suitable for queries on documents that use the same navigator as this one. -
Uses of SAXPathException in org.jaxen.dom
Methods in org.jaxen.dom that throw SAXPathExceptionModifier and TypeMethodDescriptionDocumentNavigator.parseXPath(String xpath) Returns a parsed form of the given XPath string, which will be suitable for queries on DOM documents. -
Uses of SAXPathException in org.jaxen.dom4j
Methods in org.jaxen.dom4j that throw SAXPathExceptionModifier and TypeMethodDescriptionDocumentNavigator.parseXPath(String xpath) Returns a parsed form of the given XPath string, which will be suitable for queries on DOM4J documents. -
Uses of SAXPathException in org.jaxen.javabean
Methods in org.jaxen.javabean that throw SAXPathException -
Uses of SAXPathException in org.jaxen.jdom
Methods in org.jaxen.jdom that throw SAXPathExceptionModifier and TypeMethodDescriptionDocumentNavigator.parseXPath(String xpath) Returns a parsed form of the given XPath string, which will be suitable for queries on JDOM documents. -
Uses of SAXPathException in org.jaxen.pattern
Methods in org.jaxen.pattern that throw SAXPathException -
Uses of SAXPathException in org.jaxen.saxpath
Subclasses of SAXPathException in org.jaxen.saxpathModifier and TypeClassDescriptionclassRepresents a syntax error in an XPath expression.Methods in org.jaxen.saxpath that throw SAXPathExceptionModifier and TypeMethodDescriptionvoidXPathHandler.endAbsoluteLocationPath()Receive notification of the end of an absolute location path expression.voidXPathHandler.endAdditiveExpr(int additiveOperator) Receive notification of the end of an additive ('+' or '-') expression.voidXPathHandler.endAllNodeStep()Receive notification of the end of a node() step.voidXPathHandler.endAndExpr(boolean create) Receive notification of the end of an 'and' expression.voidXPathHandler.endCommentNodeStep()Receive notification of the end of a comment() step.voidXPathHandler.endEqualityExpr(int equalityOperator) Receive notification of the end of an equality ('=' or '!=') expression.voidXPathHandler.endFilterExpr()Receive notification of the end of a filter expression.voidXPathHandler.endFunction()Receive notification of the end of a function callvoidXPathHandler.endMultiplicativeExpr(int multiplicativeOperator) Receive notification of the start of a multiplicative ('*', 'div' or 'mod') expression.voidXPathHandler.endNameStep()Receive notification of the end of a NameStepvoidXPathHandler.endOrExpr(boolean create) Receive notification of the end of an 'or' expression.voidXPathHandler.endPathExpr()Receive notification of the end of a path expression.voidXPathHandler.endPredicate()Receive notification of the end of a predicate.voidXPathHandler.endProcessingInstructionNodeStep()Receive notification of the end of a processing-instruction(...) step.voidXPathHandler.endRelationalExpr(int relationalOperator) Receive notification of the start of a relational ('<', '>', '<=', or '>=') expression.voidXPathHandler.endRelativeLocationPath()Receive notification of the end of a relative location path expression.voidXPathHandler.endTextNodeStep()Receive notification of the end of a text() step.voidXPathHandler.endUnaryExpr(int unaryOperator) Receive notification of the end of a unary ('+' or '-') expression.voidXPathHandler.endUnionExpr(boolean create) Receive notification of the end of a union ('|') expression.voidXPathHandler.endXPath()Receive notification of the end of an XPath expression parse.voidReceive notification of a literal expression.voidXPathHandler.number(double number) Receive notification of a number expression.voidXPathHandler.number(int number) Receive notification of a number expression.voidParse an XPath expression, and send event callbacks to anXPathHandler.voidXPathHandler.startAbsoluteLocationPath()Receive notification of the start of an absolute location path expression.voidXPathHandler.startAdditiveExpr()Receive notification of the start of an additive ('+' or '-') expression.voidXPathHandler.startAllNodeStep(int axis) Receive notification of the start of a node() step.voidXPathHandler.startAndExpr()Receive notification of the start of an 'and' expression.voidXPathHandler.startCommentNodeStep(int axis) Receive notification of the start of a comment() step.voidXPathHandler.startEqualityExpr()Receive notification of the start of an equality ('=' or '!=') expression.voidXPathHandler.startFilterExpr()Receive notification of the start of a filter expression.voidXPathHandler.startFunction(String prefix, String functionName) Receive notification of a function call.voidXPathHandler.startMultiplicativeExpr()Receive notification of the start of a multiplicative ('*', 'div' or 'mod') expression.voidXPathHandler.startNameStep(int axis, String prefix, String localName) Receive notification of the start of a name step.voidXPathHandler.startOrExpr()Receive notification of the start of an 'or' expression.voidXPathHandler.startPathExpr()Receive notification of the start of a path expression.voidXPathHandler.startPredicate()Receive notification of the start of a predicate.voidXPathHandler.startProcessingInstructionNodeStep(int axis, String name) Receive notification of the start of a processing-instruction(...) step.voidXPathHandler.startRelationalExpr()Receive notification of the start of a relational ('<', '>', '<=', or '>=') expression.voidXPathHandler.startRelativeLocationPath()Receive notification of the start of a relative location path expression.voidXPathHandler.startTextNodeStep(int axis) Receive notification of the start of a text() step.voidXPathHandler.startUnaryExpr()Receive notification of the start of a unary ('+' or '-') expression.voidXPathHandler.startUnionExpr()Receive notification of the start of a union ('|') expression.voidXPathHandler.startXPath()Receive notification of the start of an XPath expression parse.voidXPathHandler.variableReference(String prefix, String variableName) Receive notification of a variable-reference expression. -
Uses of SAXPathException in org.jaxen.saxpath.base
Methods in org.jaxen.saxpath.base that throw SAXPathException -
Uses of SAXPathException in org.jaxen.saxpath.helpers
Methods in org.jaxen.saxpath.helpers that throw SAXPathExceptionModifier and TypeMethodDescriptionstatic XPathReaderXPathReaderFactory.createReader()Create anXPathReaderusing the value of theorg.saxpath.driversystem property.static XPathReaderXPathReaderFactory.createReader(String className) Create anXPathReaderusing the passed in class name.voidDefaultXPathHandler.endAbsoluteLocationPath()voidDefaultXPathHandler.endAdditiveExpr(int operator) voidDefaultXPathHandler.endAllNodeStep()voidDefaultXPathHandler.endAndExpr(boolean create) voidDefaultXPathHandler.endCommentNodeStep()voidDefaultXPathHandler.endEqualityExpr(int operator) voidDefaultXPathHandler.endFilterExpr()voidDefaultXPathHandler.endFunction()voidDefaultXPathHandler.endMultiplicativeExpr(int operator) voidDefaultXPathHandler.endNameStep()voidDefaultXPathHandler.endOrExpr(boolean create) voidDefaultXPathHandler.endPathExpr()voidDefaultXPathHandler.endPredicate()voidDefaultXPathHandler.endProcessingInstructionNodeStep()voidDefaultXPathHandler.endRelationalExpr(int operator) voidDefaultXPathHandler.endRelativeLocationPath()voidDefaultXPathHandler.endTextNodeStep()voidDefaultXPathHandler.endUnaryExpr(int operator) voidDefaultXPathHandler.endUnionExpr(boolean create) voidDefaultXPathHandler.endXPath()voidvoidDefaultXPathHandler.number(double number) voidDefaultXPathHandler.number(int number) voidDefaultXPathHandler.startAbsoluteLocationPath()voidDefaultXPathHandler.startAdditiveExpr()voidDefaultXPathHandler.startAllNodeStep(int axis) voidDefaultXPathHandler.startAndExpr()voidDefaultXPathHandler.startCommentNodeStep(int axis) voidDefaultXPathHandler.startEqualityExpr()voidDefaultXPathHandler.startFilterExpr()voidDefaultXPathHandler.startFunction(String prefix, String functionName) voidDefaultXPathHandler.startMultiplicativeExpr()voidDefaultXPathHandler.startNameStep(int axis, String prefix, String localName) voidDefaultXPathHandler.startOrExpr()voidDefaultXPathHandler.startPathExpr()voidDefaultXPathHandler.startPredicate()voidDefaultXPathHandler.startProcessingInstructionNodeStep(int axis, String name) voidDefaultXPathHandler.startRelationalExpr()voidDefaultXPathHandler.startRelativeLocationPath()voidDefaultXPathHandler.startTextNodeStep(int axis) voidDefaultXPathHandler.startUnaryExpr()voidDefaultXPathHandler.startUnionExpr()voidDefaultXPathHandler.startXPath()voidDefaultXPathHandler.variableReference(String prefix, String variableName) -
Uses of SAXPathException in org.jaxen.xom
Methods in org.jaxen.xom that throw SAXPathException