Class NodeIterator
- java.lang.Object
-
- net.sourceforge.pmd.lang.ast.xpath.NodeIterator
-
@Deprecated @InternalApi public abstract class NodeIterator extends Object implements Iterator<Node>
Deprecated.Base class for node iterators used to implement XPath axis iterators for Jaxen.- Author:
- daniels
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NodeIterator(Node contextNode)
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected Node
getFirstChild(Node contextNode)
Deprecated.protected abstract Node
getFirstNode(Node contextNode)
Deprecated.protected Node
getLastChild(Node contextNode)
Deprecated.protected abstract Node
getNextNode(Node contextNode)
Deprecated.protected Node
getNextSibling(Node contextNode)
Deprecated.protected Node
getPreviousSibling(Node contextNode)
Deprecated.boolean
hasNext()
Deprecated.Node
next()
Deprecated.void
remove()
Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
NodeIterator
protected NodeIterator(Node contextNode)
Deprecated.
-
-