Module kala.compress.base
Package kala.compress.archivers
Class ArchiveInputStream.ArchiveEntryIOIterator
- java.lang.Object
-
- kala.compress.archivers.ArchiveInputStream.ArchiveEntryIOIterator
-
- All Implemented Interfaces:
IOIterator<E>
- Enclosing class:
- ArchiveInputStream<E extends ArchiveEntry>
class ArchiveInputStream.ArchiveEntryIOIterator extends java.lang.Object implements IOIterator<E>
An iterator over a collection of a specificArchiveEntrytype.- Since:
- 1.27.0
-
-
Constructor Summary
Constructors Constructor Description ArchiveEntryIOIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()LikeIterator.hasNext().Enext()LikeIterator.next().-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface kala.compress.function.IOIterator
asIterator, forEachRemaining
-
-
-
-
Field Detail
-
next
private E extends ArchiveEntry next
-
-
Method Detail
-
hasNext
public boolean hasNext() throws java.io.IOExceptionDescription copied from interface:IOIteratorLikeIterator.hasNext().- Specified by:
hasNextin interfaceIOIterator<E extends ArchiveEntry>- Returns:
- See delegate.
- Throws:
java.io.IOException- if an I/O error occurs.
-
next
public E next() throws java.io.IOException
Description copied from interface:IOIteratorLikeIterator.next().- Specified by:
nextin interfaceIOIterator<E extends ArchiveEntry>- Returns:
- See delegate.
- Throws:
java.io.IOException- if an I/O error occurs.
-
-