Class ArchiveInputStream.ArchiveEntryIOIterator

  • All Implemented Interfaces:
    org.apache.commons.io.function.IOIterator<E>
    Enclosing class:
    ArchiveInputStream<E extends ArchiveEntry>

    class ArchiveInputStream.ArchiveEntryIOIterator
    extends java.lang.Object
    implements org.apache.commons.io.function.IOIterator<E>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private E next  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      E next()  
      java.util.Iterator<E> unwrap()
      Always returns null, this is a "native" IOIterator.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.apache.commons.io.function.IOIterator

        asIterator, forEachRemaining, remove
    • Constructor Detail

      • ArchiveEntryIOIterator

        ArchiveEntryIOIterator()
    • Method Detail

      • hasNext

        public boolean hasNext()
                        throws java.io.IOException
        Specified by:
        hasNext in interface org.apache.commons.io.function.IOIterator<E extends ArchiveEntry>
        Throws:
        java.io.IOException
      • next

        public E next()
               throws java.io.IOException
        Specified by:
        next in interface org.apache.commons.io.function.IOIterator<E extends ArchiveEntry>
        Throws:
        java.io.IOException
      • unwrap

        public java.util.Iterator<E> unwrap()
        Always returns null, this is a "native" IOIterator.
        Specified by:
        unwrap in interface org.apache.commons.io.function.IOIterator<E extends ArchiveEntry>
        Returns:
        null.