Class ArchiveInputStream.ArchiveEntryIOIterator
- java.lang.Object
-
- org.apache.commons.compress.archivers.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>
-
-
Constructor Summary
Constructors Constructor Description ArchiveEntryIOIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Enext()java.util.Iterator<E>unwrap()Always returns null, this is a "native" IOIterator.
-
-
-
Field Detail
-
next
private E extends ArchiveEntry next
-
-
Method Detail
-
hasNext
public boolean hasNext() throws java.io.IOException- Specified by:
hasNextin interfaceorg.apache.commons.io.function.IOIterator<E extends ArchiveEntry>- Throws:
java.io.IOException
-
next
public E next() throws java.io.IOException
- Specified by:
nextin interfaceorg.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:
unwrapin interfaceorg.apache.commons.io.function.IOIterator<E extends ArchiveEntry>- Returns:
- null.
-
-