Class DomXmlNodeIterator<T extends SpinXmlNode>

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

    public abstract class DomXmlNodeIterator<T extends SpinXmlNode>
    extends java.lang.Object
    implements java.util.Iterator<T>
    Author:
    Sebastian Menski
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected int index  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected abstract T getCurrent()  
      protected abstract int getLength()  
      boolean hasNext()  
      T next()  
      void remove()  
      • 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
    • Field Detail

      • index

        protected int index
    • Constructor Detail

      • DomXmlNodeIterator

        public DomXmlNodeIterator()
    • Method Detail

      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<T extends SpinXmlNode>
      • next

        public T next()
        Specified by:
        next in interface java.util.Iterator<T extends SpinXmlNode>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<T extends SpinXmlNode>
      • getLength

        protected abstract int getLength()
      • getCurrent

        protected abstract T getCurrent()