Class AbstractIterator<V>

    • Constructor Detail

      • AbstractIterator

        public AbstractIterator()
    • Method Detail

      • endOfData

        protected V endOfData()
      • computeNext

        protected abstract V computeNext()
      • hasNext

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

        public V next()
        Specified by:
        next in interface java.util.Iterator<V>
        Specified by:
        next in interface com.google.common.collect.PeekingIterator<V>
      • peek

        public V peek()
        Specified by:
        peek in interface com.google.common.collect.PeekingIterator<V>
      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<V>
        Specified by:
        remove in interface com.google.common.collect.PeekingIterator<V>
      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface CloseableIterator<V>