Uses of Class
org.jaxen.UnsupportedAxisException
Packages that use UnsupportedAxisException
Package
Description
This package defines the core Jaxen API to the XPath engine.
Interfaces and default implementations for
XPath expression components.
Axis iterator creation functors.
Standard XPath function library.
Utility objects for walking object models.
-
Uses of UnsupportedAxisException in org.jaxen
Methods in org.jaxen that throw UnsupportedAxisExceptionModifier and TypeMethodDescriptionvoidSimpleNamespaceContext.addElementNamespaces(Navigator nav, Object element) Adds all the namespace declarations that are in scope on the given element.DefaultNavigator.getAncestorAxisIterator(Object contextNode) Navigator.getAncestorAxisIterator(Object contextNode) Retrieve anIteratormatching theancestorXPath axis.DefaultNavigator.getAncestorOrSelfAxisIterator(Object contextNode) Navigator.getAncestorOrSelfAxisIterator(Object contextNode) Retrieve anIteratormatching theancestor-or-selfXPath axis.DefaultNavigator.getAttributeAxisIterator(Object contextNode) ThrowsUnsupportedAxisException.NamedAccessNavigator.getAttributeAxisIterator(Object contextNode, String localName, String namespacePrefix, String namespaceURI) Retrieve anIteratorthat returns theattributeXPath axis where the names of the attributes match the supplied name and optional namespace.Navigator.getAttributeAxisIterator(Object contextNode) Retrieve anIteratormatching theattributeXPath axis.DefaultNavigator.getChildAxisIterator(Object contextNode) ThrowsUnsupportedAxisExceptionNamedAccessNavigator.getChildAxisIterator(Object contextNode, String localName, String namespacePrefix, String namespaceURI) Retrieve anIteratorthat returns thechildXPath axis where the names of the children match the supplied name and optional namespace.Navigator.getChildAxisIterator(Object contextNode) Retrieve anIteratormatching thechildXPath axis.DefaultNavigator.getDescendantAxisIterator(Object contextNode) Navigator.getDescendantAxisIterator(Object contextNode) Retrieve anIteratormatching thedescendantXPath axis.DefaultNavigator.getDescendantOrSelfAxisIterator(Object contextNode) Navigator.getDescendantOrSelfAxisIterator(Object contextNode) Retrieve anIteratormatching thedescendant-or-selfXPath axis.DefaultNavigator.getFollowingAxisIterator(Object contextNode) Navigator.getFollowingAxisIterator(Object contextNode) Retrieve anIteratormatching thefollowingXPath axis.DefaultNavigator.getFollowingSiblingAxisIterator(Object contextNode) Navigator.getFollowingSiblingAxisIterator(Object contextNode) Retrieve anIteratormatching thefollowing-siblingXPath axis.DefaultNavigator.getNamespaceAxisIterator(Object contextNode) ThrowsUnsupportedAxisException.Navigator.getNamespaceAxisIterator(Object contextNode) Retrieve anIteratormatching thenamespaceXPath axis.DefaultNavigator.getParentAxisIterator(Object contextNode) ThrowsUnsupportedAxisExceptionNavigator.getParentAxisIterator(Object contextNode) Retrieve anIteratormatching theparentXPath axis.DefaultNavigator.getParentNode(Object contextNode) Default inefficient implementation.Navigator.getParentNode(Object contextNode) Returns the parent of the given context node.DefaultNavigator.getPrecedingAxisIterator(Object contextNode) Navigator.getPrecedingAxisIterator(Object contextNode) Retrieve anIteratormatching theprecedingXPath axis.DefaultNavigator.getPrecedingSiblingAxisIterator(Object contextNode) Navigator.getPrecedingSiblingAxisIterator(Object contextNode) Retrieve anIteratormatching thepreceding-siblingXPath axis.DefaultNavigator.getSelfAxisIterator(Object contextNode) Navigator.getSelfAxisIterator(Object contextNode) Retrieve anIteratormatching theselfXPath axis. -
Uses of UnsupportedAxisException in org.jaxen.expr
Methods in org.jaxen.expr that throw UnsupportedAxisExceptionModifier and TypeMethodDescriptionDefaultStep.axisIterator(Object contextNode, ContextSupport support) Deprecated.Step.axisIterator(Object contextNode, ContextSupport support) Get an Iterator for the current axis starting in the given contextNode.private intNodeComparator.compareSiblings(Object sib1, Object sib2) private int -
Uses of UnsupportedAxisException in org.jaxen.expr.iter
Methods in org.jaxen.expr.iter that throw UnsupportedAxisExceptionModifier and TypeMethodDescriptionIterableAncestorAxis.iterator(Object contextNode, ContextSupport support) IterableAncestorOrSelfAxis.iterator(Object contextNode, ContextSupport support) IterableAttributeAxis.iterator(Object contextNode, ContextSupport support) Gets an iterator for the attribute axis.abstract IteratorIterableAxis.iterator(Object contextNode, ContextSupport support) Gets the iterator for a specific XPath axis.IterableChildAxis.iterator(Object contextNode, ContextSupport support) Gets the iterator for the child axis.IterableDescendantAxis.iterator(Object contextNode, ContextSupport support) IterableDescendantOrSelfAxis.iterator(Object contextNode, ContextSupport support) IterableFollowingAxis.iterator(Object contextNode, ContextSupport support) IterableFollowingSiblingAxis.iterator(Object contextNode, ContextSupport support) IterableNamespaceAxis.iterator(Object contextNode, ContextSupport support) IterableParentAxis.iterator(Object contextNode, ContextSupport support) IterablePrecedingAxis.iterator(Object contextNode, ContextSupport support) IterablePrecedingSiblingAxis.iterator(Object contextNode, ContextSupport support) IterableSelfAxis.iterator(Object contextNode, ContextSupport support) IterableAttributeAxis.namedAccessIterator(Object contextNode, ContextSupport support, String localName, String namespacePrefix, String namespaceURI) Gets the iterator for the attribute axis that supports named access.IterableAxis.namedAccessIterator(Object contextNode, ContextSupport support, String localName, String namespacePrefix, String namespaceURI) Gets the iterator for a specific XPath axis that supports named access.IterableChildAxis.namedAccessIterator(Object contextNode, ContextSupport support, String localName, String namespacePrefix, String namespaceURI) Gets an iterator for the child XPath axis that supports named access. -
Uses of UnsupportedAxisException in org.jaxen.function
Methods in org.jaxen.function that throw UnsupportedAxisException -
Uses of UnsupportedAxisException in org.jaxen.util
Methods in org.jaxen.util that throw UnsupportedAxisExceptionModifier and TypeMethodDescriptionprivate voidFollowingSiblingAxisIterator.init()private voidPrecedingSiblingAxisIterator.init()Constructors in org.jaxen.util that throw UnsupportedAxisExceptionModifierConstructorDescriptionDescendantAxisIterator(Object contextNode, Navigator navigator) Create a newdescendantaxis iterator.FollowingAxisIterator(Object contextNode, Navigator navigator) Create a newfollowingaxis iterator.FollowingSiblingAxisIterator(Object contextNode, Navigator navigator) Create a newfollowing-siblingaxis iterator.PrecedingAxisIterator(Object contextNode, Navigator navigator) Create a newprecedingaxis iterator.PrecedingSiblingAxisIterator(Object contextNode, Navigator navigator) Create a newpreceding-siblingaxis iterator.