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 protectedNodeIterator(Node contextNode)Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected NodegetFirstChild(Node contextNode)Deprecated.protected abstract NodegetFirstNode(Node contextNode)Deprecated.protected NodegetLastChild(Node contextNode)Deprecated.protected abstract NodegetNextNode(Node contextNode)Deprecated.protected NodegetNextSibling(Node contextNode)Deprecated.protected NodegetPreviousSibling(Node contextNode)Deprecated.booleanhasNext()Deprecated.Nodenext()Deprecated.voidremove()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.
-
-