Uses of Class
org.apache.commons.compress.archivers.sevenz.SevenZArchiveEntry
-
Packages that use SevenZArchiveEntry Package Description org.apache.commons.compress.archivers.sevenz Provides classes for reading and writing archives using the 7z format. -
-
Uses of SevenZArchiveEntry in org.apache.commons.compress.archivers.sevenz
Methods in org.apache.commons.compress.archivers.sevenz that return SevenZArchiveEntry Modifier and Type Method Description SevenZArchiveEntry
SevenZOutputFile. createArchiveEntry(java.io.File inputFile, java.lang.String entryName)
Creates an archive entry using the inputFile and entryName provided.SevenZArchiveEntry
SevenZOutputFile. createArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options)
Creates an archive entry using the inputPath and entryName provided.SevenZArchiveEntry
SevenZFile. getNextEntry()
Gets the next Archive Entry in this archive.Methods in org.apache.commons.compress.archivers.sevenz that return types with arguments of type SevenZArchiveEntry Modifier and Type Method Description java.lang.Iterable<SevenZArchiveEntry>
SevenZFile. getEntries()
Gets a copy of meta-data of all archive entries.Methods in org.apache.commons.compress.archivers.sevenz with parameters of type SevenZArchiveEntry Modifier and Type Method Description java.io.InputStream
SevenZFile. getInputStream(SevenZArchiveEntry entry)
Gets an InputStream for reading the contents of the given entry.void
SevenZOutputFile. putArchiveEntry(SevenZArchiveEntry archiveEntry)
Records an archive entry to add.
-