Package tilda.utils

Class ReverseIterator<T>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.ListIterator<T> _BaseIterator  
      protected static org.apache.logging.log4j.Logger LOG  
    • Constructor Summary

      Constructors 
      Constructor Description
      ReverseIterator​(java.util.List<T> L)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      T next()  
      • 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, remove
    • Field Detail

      • LOG

        protected static final org.apache.logging.log4j.Logger LOG
      • _BaseIterator

        protected java.util.ListIterator<T> _BaseIterator
    • Constructor Detail

      • ReverseIterator

        public ReverseIterator​(java.util.List<T> L)
    • Method Detail

      • hasNext

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

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