Uses of Interface
kala.compress.archivers.ArchiveEntry
-
Packages that use ArchiveEntry Package Description kala.compress.archivers Provides a unified API and factories for dealing with archives in different formats.kala.compress.archivers.ar Provides stream classes for reading and writing archives using the AR format.kala.compress.archivers.arj Provides stream classes for reading archives using the ARJ format.kala.compress.archivers.cpio Provides stream classes for reading and writing archives using the CPIO format.kala.compress.archivers.dump This package provides stream classes for reading archives using the UNIX DUMP format.kala.compress.archivers.examples Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress.kala.compress.archivers.jar Provides stream classes for reading and writing archives using the ZIP format with some extensions for the special case of JAR archives.kala.compress.archivers.sevenz Provides classes for reading and writing archives using the 7z format.kala.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format.kala.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format.kala.compress.changes EXPERIMENTAL support for changesets that are applied to archives.kala.compress.utils Provides utilities used internally by the compress library. -
-
Uses of ArchiveEntry in kala.compress.archivers
Classes in kala.compress.archivers with type parameters of type ArchiveEntry Modifier and Type Class Description classArchiveInputStream<E extends ArchiveEntry>Archive input streams MUST override theFilterInputStream.read(byte[], int, int)- orArchiveInputStream.read()- method so that reading from the stream generates EOF for the end of data in each entry as well as at the end of the file proper.classArchiveOutputStream<E extends ArchiveEntry>Archive output stream implementations are expected to override theFilterOutputStream.write(byte[], int, int)method to improve performance.Fields in kala.compress.archivers declared as ArchiveEntry Modifier and Type Field Description private EArchiveInputStream.ArchiveEntryIOIterator. nextMethods in kala.compress.archivers with type parameters of type ArchiveEntry Modifier and Type Method Description <I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory. createArchiveInputStream(java.io.InputStream in)Creates an archive input stream from an input stream, autodetecting the archive type from the first few bytes of the stream.<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory. createArchiveInputStream(java.lang.String archiverName, java.io.InputStream in)Creates an archive input stream from an archiver name and an input stream.<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory. createArchiveInputStream(java.lang.String archiverName, java.io.InputStream in, java.nio.charset.Charset actualEncoding)<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamProvider. createArchiveInputStream(java.lang.String archiverName, java.io.InputStream inputStream, java.nio.charset.Charset encoding)Creates an archive input stream from an archiver name and an input stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out)Creates an archive output stream from an archiver name and an output stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out, java.nio.charset.Charset actualEncoding)<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamProvider. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream outputStream, java.nio.charset.Charset encoding)Creates an archive output stream from an archiver name and an output stream.Methods in kala.compress.archivers with parameters of type ArchiveEntry Modifier and Type Method Description booleanArchiveInputStream. canReadEntryData(ArchiveEntry archiveEntry)Whether this stream is able to read the given entry.booleanArchiveOutputStream. canWriteEntryData(ArchiveEntry archiveEntry)Whether this stream is able to write the given entry. -
Uses of ArchiveEntry in kala.compress.archivers.ar
Classes in kala.compress.archivers.ar that implement ArchiveEntry Modifier and Type Class Description classArArchiveEntryRepresents an archive entry in the "ar" format. -
Uses of ArchiveEntry in kala.compress.archivers.arj
Classes in kala.compress.archivers.arj that implement ArchiveEntry Modifier and Type Class Description classArjArchiveEntryAn entry in an ARJ archive.Methods in kala.compress.archivers.arj with parameters of type ArchiveEntry Modifier and Type Method Description booleanArjArchiveInputStream. canReadEntryData(ArchiveEntry ae) -
Uses of ArchiveEntry in kala.compress.archivers.cpio
Classes in kala.compress.archivers.cpio that implement ArchiveEntry Modifier and Type Class Description classCpioArchiveEntryA cpio archive consists of a sequence of files. -
Uses of ArchiveEntry in kala.compress.archivers.dump
Classes in kala.compress.archivers.dump that implement ArchiveEntry Modifier and Type Class Description classDumpArchiveEntryThis class represents an entry in a Dump archive. -
Uses of ArchiveEntry in kala.compress.archivers.examples
Classes in kala.compress.archivers.examples with type parameters of type ArchiveEntry Modifier and Type Class Description private static classArchiver.ArchiverFileVisitor<O extends ArchiveOutputStream<E>,E extends ArchiveEntry>private static interfaceExpander.ArchiveEntryBiConsumer<T extends ArchiveEntry>private static interfaceExpander.ArchiveEntrySupplier<T extends ArchiveEntry>Methods in kala.compress.archivers.examples with type parameters of type ArchiveEntry Modifier and Type Method Description private static <T extends ArchiveInputStream<? extends E>,E extends ArchiveEntry>
TLister. createArchiveInputStream(java.lang.String[] args, java.io.InputStream inputStream)private <T extends ArchiveEntry>
voidExpander. expand(Expander.ArchiveEntrySupplier<T> supplier, Expander.ArchiveEntryBiConsumer<T> writer, java.nio.file.Path targetDirectory)Methods in kala.compress.archivers.examples with parameters of type ArchiveEntry Modifier and Type Method Description private voidLister. println(ArchiveEntry entry) -
Uses of ArchiveEntry in kala.compress.archivers.jar
Classes in kala.compress.archivers.jar that implement ArchiveEntry Modifier and Type Class Description classJarArchiveEntryJAR archive entry. -
Uses of ArchiveEntry in kala.compress.archivers.sevenz
Classes in kala.compress.archivers.sevenz that implement ArchiveEntry Modifier and Type Class Description classSevenZArchiveEntryAn entry in a 7z archive. -
Uses of ArchiveEntry in kala.compress.archivers.tar
Classes in kala.compress.archivers.tar that implement ArchiveEntry Modifier and Type Class Description classTarArchiveEntryAn entry in a Tar archive.Methods in kala.compress.archivers.tar with parameters of type ArchiveEntry Modifier and Type Method Description booleanTarArchiveInputStream. canReadEntryData(ArchiveEntry archiveEntry)Whether this class is able to read the given entry. -
Uses of ArchiveEntry in kala.compress.archivers.zip
Classes in kala.compress.archivers.zip that implement ArchiveEntry Modifier and Type Class Description classZipArchiveEntryExtension that adds better handling of extra fields and provides access to the internal and external file attributes.private static classZipArchiveReader.EntryExtends ZipArchiveEntry to store the offset within the archive.Methods in kala.compress.archivers.zip with parameters of type ArchiveEntry Modifier and Type Method Description booleanZipArchiveInputStream. canReadEntryData(ArchiveEntry ae)Whether this class is able to read the given entry.booleanZipArchiveOutputStream. canWriteEntryData(ArchiveEntry ae)Whether this stream is able to write the given entry. -
Uses of ArchiveEntry in kala.compress.changes
Classes in kala.compress.changes with type parameters of type ArchiveEntry Modifier and Type Class Description (package private) classChange<E extends ArchiveEntry>Change holds meta information about a change.classChangeSet<E extends ArchiveEntry>ChangeSet collects and performs changes to an archive.classChangeSetPerformer<I extends ArchiveInputStream<E>,O extends ArchiveOutputStream<E>,E extends ArchiveEntry>Performs ChangeSet operations on a stream.private static interfaceChangeSetPerformer.ArchiveEntryIterator<E extends ArchiveEntry>Abstracts getting entries and streams for archive entries.private static classChangeSetPerformer.ArchiveInputStreamIterator<E extends ArchiveEntry>Fields in kala.compress.changes declared as ArchiveEntry Modifier and Type Field Description private EChange. entryNew entry to add.private EChangeSetPerformer.ArchiveInputStreamIterator. next -
Uses of ArchiveEntry in kala.compress.utils
Methods in kala.compress.utils with parameters of type ArchiveEntry Modifier and Type Method Description static java.lang.StringArchiveUtils. toString(ArchiveEntry entry)Generates a string containing the name, isDirectory setting and size of an entry.
-