Uses of Class
org.apache.commons.compress.utils.BoundedArchiveInputStream
-
Packages that use BoundedArchiveInputStream Package Description org.apache.commons.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format.org.apache.commons.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format.org.apache.commons.compress.utils Contains utilities used internally by the compress library. -
-
Uses of BoundedArchiveInputStream in org.apache.commons.compress.archivers.tar
Subclasses of BoundedArchiveInputStream in org.apache.commons.compress.archivers.tar Modifier and Type Class Description private class
TarFile.BoundedTarEntryInputStream
-
Uses of BoundedArchiveInputStream in org.apache.commons.compress.archivers.zip
Subclasses of BoundedArchiveInputStream in org.apache.commons.compress.archivers.zip Modifier and Type Class Description private class
ZipFile.BoundedFileChannelInputStream
Lock-free implementation of BoundedInputStream.Methods in org.apache.commons.compress.archivers.zip that return BoundedArchiveInputStream Modifier and Type Method Description private BoundedArchiveInputStream
ZipFile. createBoundedInputStream(long start, long remaining)
Creates new BoundedInputStream, according to implementation of underlying archive channel. -
Uses of BoundedArchiveInputStream in org.apache.commons.compress.utils
Subclasses of BoundedArchiveInputStream in org.apache.commons.compress.utils Modifier and Type Class Description class
BoundedSeekableByteChannelInputStream
InputStream that delegates requests to the underlying SeekableByteChannel, making sure that only bytes from a certain range can be read.
-