Uses of Class
org.apache.commons.compress.archivers.tar.TarArchiveEntry
-
Packages that use TarArchiveEntry Package Description org.apache.commons.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format. -
-
Uses of TarArchiveEntry in org.apache.commons.compress.archivers.tar
Fields in org.apache.commons.compress.archivers.tar declared as TarArchiveEntry Modifier and Type Field Description private TarArchiveEntryTarArchiveInputStream. currEntryThe meta-data about the current entry.private TarArchiveEntryTarFile. currEntryThe meta-data about the current entryprivate static TarArchiveEntry[]TarArchiveEntry. EMPTY_TAR_ARCHIVE_ENTRY_ARRAYprivate TarArchiveEntryTarFile.BoundedTarEntryInputStream. entryFields in org.apache.commons.compress.archivers.tar with type parameters of type TarArchiveEntry Modifier and Type Field Description private java.util.LinkedList<TarArchiveEntry>TarFile. entriesMethods in org.apache.commons.compress.archivers.tar that return TarArchiveEntry Modifier and Type Method Description TarArchiveEntryTarArchiveOutputStream. createArchiveEntry(java.io.File inputFile, java.lang.String entryName)TarArchiveEntryTarArchiveOutputStream. createArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options)TarArchiveEntryTarArchiveInputStream. getCurrentEntry()Gets the current TAR Archive Entry that this input stream is processingTarArchiveEntry[]TarArchiveEntry. getDirectoryEntries()If this entry represents a file, and the file is a directory, return an array of TarEntries for this entry's children.TarArchiveEntryTarArchiveInputStream. getNextEntry()Gets the next TarArchiveEntry in this stream.TarArchiveEntryTarArchiveInputStream. getNextTarEntry()Deprecated.private TarArchiveEntryTarFile. getNextTarEntry()Gets the next entry in this tar archive.Methods in org.apache.commons.compress.archivers.tar that return types with arguments of type TarArchiveEntry Modifier and Type Method Description java.util.List<TarArchiveEntry>TarFile. getEntries()Gets all TAR Archive Entries from the TarFileMethods in org.apache.commons.compress.archivers.tar with parameters of type TarArchiveEntry Modifier and Type Method Description private voidTarArchiveOutputStream. addPaxHeadersForBigNumbers(java.util.Map<java.lang.String,java.lang.String> paxHeaders, TarArchiveEntry entry)booleanTarArchiveEntry. equals(TarArchiveEntry it)Determine if the two entries are equal.private voidTarArchiveOutputStream. failForBigNumbers(TarArchiveEntry entry)java.io.InputStreamTarFile. getInputStream(TarArchiveEntry entry)Gets the input stream for the provided Tar Archive Entry.private booleanTarArchiveOutputStream. handleLongName(TarArchiveEntry entry, java.lang.String name, java.util.Map<java.lang.String,java.lang.String> paxHeaders, java.lang.String paxHeaderName, byte linkType, java.lang.String fieldName)Handles long file or link names according to the longFileMode setting.booleanTarArchiveEntry. isDescendent(TarArchiveEntry desc)Tests whether the given entry is a descendant of this entry.voidTarArchiveOutputStream. putArchiveEntry(TarArchiveEntry archiveEntry)Puts an entry on the output stream.protected voidTarArchiveInputStream. setCurrentEntry(TarArchiveEntry currEntry)private voidTarArchiveOutputStream. transferModTime(TarArchiveEntry from, TarArchiveEntry to)(package private) voidTarArchiveOutputStream. writePaxHeaders(TarArchiveEntry entry, java.lang.String entryName, java.util.Map<java.lang.String,java.lang.String> headers)Writes a PAX extended header with the given map as contents.Constructors in org.apache.commons.compress.archivers.tar with parameters of type TarArchiveEntry Constructor Description BoundedTarEntryInputStream(TarArchiveEntry entry, java.nio.channels.SeekableByteChannel channel)
-