Class ResultListIterator

  • All Implemented Interfaces:
    java.util.Iterator, java.util.ListIterator

    public class ResultListIterator
    extends java.lang.Object
    Wrapper iterator that will return false for hasNext() if the owning ResultList has been closed.
    Author:
    Marc Prud'hommeaux
    • Constructor Detail

      • ResultListIterator

        public ResultListIterator​(java.util.ListIterator li,
                                  ResultList rl)
    • Method Detail

      • getResultList

        public ResultList getResultList()
      • hasNext

        public boolean hasNext()
      • hasPrevious

        public boolean hasPrevious()
      • next

        public java.lang.Object next()
      • nextIndex

        public int nextIndex()
      • previous

        public java.lang.Object previous()
      • previousIndex

        public int previousIndex()
      • add

        public void add​(E o)
        Specified by:
        add in interface java.util.ListIterator<E>
      • set

        public void set​(E o)
        Specified by:
        set in interface java.util.ListIterator<E>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<E>
        Specified by:
        remove in interface java.util.ListIterator<E>