Uses of Class
org.jaxen.saxpath.SAXPathException
-
Packages that use SAXPathException Package Description 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.javabean Navigation for JavaBeans.org.jaxen.jdom Navigation for JDOM trees.org.jaxen.pattern Defines XSLT Pattern objects.org.jaxen.saxpath Classes related to the event-based parsing and handling of XPath expressions.org.jaxen.saxpath.base jaxen implementation of the SAXPath functionality.org.jaxen.saxpath.helpers Helper classes for instantiating XPathReaders.org.jaxen.xom Navigation for XOM trees. -
-
Uses of SAXPathException in org.jaxen
Subclasses of SAXPathException in org.jaxen Modifier and Type Class Description classFunctionCallExceptionThrown if an exception occurs during the evaluation of a function.classJaxenExceptionGeneric Jaxen exception.classUnresolvableExceptionThrown when a function-call or variable-reference, or any other lookup based on namespace and local name, couldn't be resolved.classUnsupportedAxisExceptionIndicates attempt to evaluate an XPath axis that is unsupported by the current object-model.classXPathSyntaxExceptionIndicates an error during parsing of an XPath expression.Methods in org.jaxen that throw SAXPathException Modifier and Type Method Description XPathNavigator. parseXPath(java.lang.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 SAXPathException Modifier and Type Method Description XPathDocumentNavigator. parseXPath(java.lang.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 SAXPathException Modifier and Type Method Description XPathDocumentNavigator. parseXPath(java.lang.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 Modifier and Type Method Description XPathDocumentNavigator. parseXPath(java.lang.String xpath) -
Uses of SAXPathException in org.jaxen.jdom
Methods in org.jaxen.jdom that throw SAXPathException Modifier and Type Method Description XPathDocumentNavigator. parseXPath(java.lang.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 Modifier and Type Method Description static PatternPatternParser. parse(java.lang.String text) -
Uses of SAXPathException in org.jaxen.saxpath
Subclasses of SAXPathException in org.jaxen.saxpath Modifier and Type Class Description classXPathSyntaxExceptionRepresents a syntax error in an XPath expression.Methods in org.jaxen.saxpath that throw SAXPathException Modifier and Type Method Description voidXPathHandler. 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.voidXPathHandler. literal(java.lang.String literal)Receive 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.voidXPathReader. parse(java.lang.String xpath)Parse 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(java.lang.String prefix, java.lang.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, java.lang.String prefix, java.lang.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, java.lang.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(java.lang.String prefix, java.lang.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 Modifier and Type Method Description voidXPathReader. parse(java.lang.String xpath) -
Uses of SAXPathException in org.jaxen.saxpath.helpers
Methods in org.jaxen.saxpath.helpers that throw SAXPathException Modifier and Type Method Description static XPathReaderXPathReaderFactory. createReader()Create anXPathReaderusing the value of theorg.saxpath.driversystem property.static XPathReaderXPathReaderFactory. createReader(java.lang.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()voidDefaultXPathHandler. literal(java.lang.String literal)voidDefaultXPathHandler. 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(java.lang.String prefix, java.lang.String functionName)voidDefaultXPathHandler. startMultiplicativeExpr()voidDefaultXPathHandler. startNameStep(int axis, java.lang.String prefix, java.lang.String localName)voidDefaultXPathHandler. startOrExpr()voidDefaultXPathHandler. startPathExpr()voidDefaultXPathHandler. startPredicate()voidDefaultXPathHandler. startProcessingInstructionNodeStep(int axis, java.lang.String name)voidDefaultXPathHandler. startRelationalExpr()voidDefaultXPathHandler. startRelativeLocationPath()voidDefaultXPathHandler. startTextNodeStep(int axis)voidDefaultXPathHandler. startUnaryExpr()voidDefaultXPathHandler. startUnionExpr()voidDefaultXPathHandler. startXPath()voidDefaultXPathHandler. variableReference(java.lang.String prefix, java.lang.String variableName) -
Uses of SAXPathException in org.jaxen.xom
Methods in org.jaxen.xom that throw SAXPathException Modifier and Type Method Description XPathDocumentNavigator. parseXPath(java.lang.String s)
-