Class NodeIterator

  • All Implemented Interfaces:
    java.util.Iterator<Node>

    @Deprecated
    @InternalApi
    public abstract class NodeIterator
    extends java.lang.Object
    implements java.util.Iterator<Node>
    Deprecated.
    Base class for node iterators used to implement XPath axis iterators for Jaxen.
    Author:
    daniels
    • Constructor Detail

      • NodeIterator

        protected NodeIterator​(Node contextNode)
        Deprecated.
    • Method Detail

      • hasNext

        public boolean hasNext()
        Deprecated.
        Specified by:
        hasNext in interface java.util.Iterator<Node>
      • next

        public Node next()
        Deprecated.
        Specified by:
        next in interface java.util.Iterator<Node>
      • remove

        public void remove()
        Deprecated.
        Specified by:
        remove in interface java.util.Iterator<Node>
      • getFirstNode

        protected abstract Node getFirstNode​(Node contextNode)
        Deprecated.
      • getNextNode

        protected abstract Node getNextNode​(Node contextNode)
        Deprecated.
      • getPreviousSibling

        protected Node getPreviousSibling​(Node contextNode)
        Deprecated.
      • getNextSibling

        protected Node getNextSibling​(Node contextNode)
        Deprecated.
      • getFirstChild

        protected Node getFirstChild​(Node contextNode)
        Deprecated.
      • getLastChild

        protected Node getLastChild​(Node contextNode)
        Deprecated.