Uses of Interface
kala.compress.archivers.ArchiveEntry
Packages that use ArchiveEntry
Package
Description
Provides a unified API and factories for dealing with archives in different formats.
Provides stream classes for reading and writing archives using the AR format.
Provides stream classes for reading archives using the ARJ format.
Provides stream classes for reading and writing archives using the CPIO format.
This package provides stream classes for reading archives using the UNIX DUMP format.
Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress.
Provides stream classes for reading and writing archives using the ZIP format with some extensions for the special case of JAR archives.
Provides classes for reading and writing archives using the 7z format.
Provides stream classes for reading and writing archives using the TAR format.
Provides stream classes for reading and writing archives using the ZIP format.
EXPERIMENTAL support for changesets that are applied to archives.
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 ArchiveEntryModifier and TypeClassDescriptionclassArchiveInputStream<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 ArchiveEntryMethods in kala.compress.archivers with type parameters of type ArchiveEntryModifier and TypeMethodDescription<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory.createArchiveInputStream(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(String archiverName, InputStream in) Creates an archive input stream from an archiver name and an input stream.<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory.createArchiveInputStream(String archiverName, InputStream in, Charset actualEncoding) <I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamProvider.createArchiveInputStream(String archiverName, InputStream inputStream, Charset encoding) Creates an archive input stream from an archiver name and an input stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory.createArchiveOutputStream(String archiverName, OutputStream out) Creates an archive output stream from an archiver name and an output stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory.createArchiveOutputStream(String archiverName, OutputStream out, Charset actualEncoding) <O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamProvider.createArchiveOutputStream(String archiverName, OutputStream outputStream, Charset encoding) Creates an archive output stream from an archiver name and an output stream.Methods in kala.compress.archivers with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanArchiveInputStream.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 ArchiveEntryModifier and TypeClassDescriptionclassRepresents an archive entry in the "ar" format. -
Uses of ArchiveEntry in kala.compress.archivers.arj
Classes in kala.compress.archivers.arj that implement ArchiveEntryMethods in kala.compress.archivers.arj with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanArjArchiveInputStream.canReadEntryData(ArchiveEntry ae) -
Uses of ArchiveEntry in kala.compress.archivers.cpio
Classes in kala.compress.archivers.cpio that implement ArchiveEntryModifier and TypeClassDescriptionclassA cpio archive consists of a sequence of files. -
Uses of ArchiveEntry in kala.compress.archivers.dump
Classes in kala.compress.archivers.dump that implement ArchiveEntryModifier and TypeClassDescriptionclassThis 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 ArchiveEntryModifier and TypeClassDescriptionprivate 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 ArchiveEntryModifier and TypeMethodDescriptionprivate static <T extends ArchiveInputStream<? extends E>,E extends ArchiveEntry>
TLister.createArchiveInputStream(String[] args, InputStream inputStream) private <T extends ArchiveEntry>
voidExpander.expand(Expander.ArchiveEntrySupplier<T> supplier, Expander.ArchiveEntryBiConsumer<T> writer, Path targetDirectory) Methods in kala.compress.archivers.examples with parameters of type ArchiveEntry -
Uses of ArchiveEntry in kala.compress.archivers.jar
Classes in kala.compress.archivers.jar that implement ArchiveEntry -
Uses of ArchiveEntry in kala.compress.archivers.sevenz
Classes in kala.compress.archivers.sevenz that implement ArchiveEntry -
Uses of ArchiveEntry in kala.compress.archivers.tar
Classes in kala.compress.archivers.tar that implement ArchiveEntryMethods in kala.compress.archivers.tar with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanTarArchiveInputStream.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 ArchiveEntryModifier and TypeClassDescriptionclassExtension that adds better handling of extra fields and provides access to the internal and external file attributes.private static final classExtends ZipArchiveEntry to store the offset within the archive.Methods in kala.compress.archivers.zip with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanZipArchiveInputStream.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 ArchiveEntryModifier and TypeClassDescription(package private) final classChange<E extends ArchiveEntry>Change holds meta information about a change.final 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 interfaceAbstracts getting entries and streams for archive entries.private static final classFields in kala.compress.changes declared as ArchiveEntry -
Uses of ArchiveEntry in kala.compress.utils
Methods in kala.compress.utils with parameters of type ArchiveEntryModifier and TypeMethodDescriptionstatic StringArchiveUtils.toString(ArchiveEntry entry) Generates a string containing the name, isDirectory setting and size of an entry.