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 TypeMethodDescriptionvoid
SimpleNamespaceContext.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 anIterator
matching theancestor
XPath axis.DefaultNavigator.getAncestorOrSelfAxisIterator
(Object contextNode) Navigator.getAncestorOrSelfAxisIterator
(Object contextNode) Retrieve anIterator
matching theancestor-or-self
XPath axis.DefaultNavigator.getAttributeAxisIterator
(Object contextNode) ThrowsUnsupportedAxisException
.NamedAccessNavigator.getAttributeAxisIterator
(Object contextNode, String localName, String namespacePrefix, String namespaceURI) Retrieve anIterator
that returns theattribute
XPath axis where the names of the attributes match the supplied name and optional namespace.Navigator.getAttributeAxisIterator
(Object contextNode) Retrieve anIterator
matching theattribute
XPath axis.DefaultNavigator.getChildAxisIterator
(Object contextNode) ThrowsUnsupportedAxisException
NamedAccessNavigator.getChildAxisIterator
(Object contextNode, String localName, String namespacePrefix, String namespaceURI) Retrieve anIterator
that returns thechild
XPath axis where the names of the children match the supplied name and optional namespace.Navigator.getChildAxisIterator
(Object contextNode) Retrieve anIterator
matching thechild
XPath axis.DefaultNavigator.getDescendantAxisIterator
(Object contextNode) Navigator.getDescendantAxisIterator
(Object contextNode) Retrieve anIterator
matching thedescendant
XPath axis.DefaultNavigator.getDescendantOrSelfAxisIterator
(Object contextNode) Navigator.getDescendantOrSelfAxisIterator
(Object contextNode) Retrieve anIterator
matching thedescendant-or-self
XPath axis.DefaultNavigator.getFollowingAxisIterator
(Object contextNode) Navigator.getFollowingAxisIterator
(Object contextNode) Retrieve anIterator
matching thefollowing
XPath axis.DefaultNavigator.getFollowingSiblingAxisIterator
(Object contextNode) Navigator.getFollowingSiblingAxisIterator
(Object contextNode) Retrieve anIterator
matching thefollowing-sibling
XPath axis.DefaultNavigator.getNamespaceAxisIterator
(Object contextNode) ThrowsUnsupportedAxisException
.Navigator.getNamespaceAxisIterator
(Object contextNode) Retrieve anIterator
matching thenamespace
XPath axis.DefaultNavigator.getParentAxisIterator
(Object contextNode) ThrowsUnsupportedAxisException
Navigator.getParentAxisIterator
(Object contextNode) Retrieve anIterator
matching theparent
XPath 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 anIterator
matching thepreceding
XPath axis.DefaultNavigator.getPrecedingSiblingAxisIterator
(Object contextNode) Navigator.getPrecedingSiblingAxisIterator
(Object contextNode) Retrieve anIterator
matching thepreceding-sibling
XPath axis.DefaultNavigator.getSelfAxisIterator
(Object contextNode) Navigator.getSelfAxisIterator
(Object contextNode) Retrieve anIterator
matching theself
XPath 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 int
NodeComparator.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 Iterator
IterableAxis.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 void
FollowingSiblingAxisIterator.init()
private void
PrecedingSiblingAxisIterator.init()
Constructors in org.jaxen.util that throw UnsupportedAxisExceptionModifierConstructorDescriptionDescendantAxisIterator
(Object contextNode, Navigator navigator) Create a newdescendant
axis iterator.FollowingAxisIterator
(Object contextNode, Navigator navigator) Create a newfollowing
axis iterator.FollowingSiblingAxisIterator
(Object contextNode, Navigator navigator) Create a newfollowing-sibling
axis iterator.PrecedingAxisIterator
(Object contextNode, Navigator navigator) Create a newpreceding
axis iterator.PrecedingSiblingAxisIterator
(Object contextNode, Navigator navigator) Create a newpreceding-sibling
axis iterator.