Uses of Class
org.apache.commons.compress.archivers.cpio.CpioArchiveEntry
-
Packages that use CpioArchiveEntry Package Description org.apache.commons.compress.archivers.cpio Provides stream classes for reading and writing archives using the CPIO format. -
-
Uses of CpioArchiveEntry in org.apache.commons.compress.archivers.cpio
Fields in org.apache.commons.compress.archivers.cpio declared as CpioArchiveEntry Modifier and Type Field Description private CpioArchiveEntry
CpioArchiveInputStream. entry
private CpioArchiveEntry
CpioArchiveOutputStream. entry
Fields in org.apache.commons.compress.archivers.cpio with type parameters of type CpioArchiveEntry Modifier and Type Field Description private java.util.HashMap<java.lang.String,CpioArchiveEntry>
CpioArchiveOutputStream. names
Methods in org.apache.commons.compress.archivers.cpio that return CpioArchiveEntry Modifier and Type Method Description CpioArchiveEntry
CpioArchiveOutputStream. createArchiveEntry(java.io.File inputFile, java.lang.String entryName)
Creates a new CpioArchiveEntry.CpioArchiveEntry
CpioArchiveOutputStream. createArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options)
Creates a new CpioArchiveEntry.CpioArchiveEntry
CpioArchiveInputStream. getNextCPIOEntry()
Deprecated.CpioArchiveEntry
CpioArchiveInputStream. getNextEntry()
private CpioArchiveEntry
CpioArchiveInputStream. readNewEntry(boolean hasCrc)
private CpioArchiveEntry
CpioArchiveInputStream. readOldAsciiEntry()
private CpioArchiveEntry
CpioArchiveInputStream. readOldBinaryEntry(boolean swapHalfWord)
Methods in org.apache.commons.compress.archivers.cpio with parameters of type CpioArchiveEntry Modifier and Type Method Description void
CpioArchiveOutputStream. putArchiveEntry(CpioArchiveEntry entry)
Begins writing a new CPIO file entry and positions the stream to the start of the entry data.private void
CpioArchiveOutputStream. writeHeader(CpioArchiveEntry e)
private void
CpioArchiveOutputStream. writeNewEntry(CpioArchiveEntry entry)
private void
CpioArchiveOutputStream. writeOldAsciiEntry(CpioArchiveEntry entry)
private void
CpioArchiveOutputStream. writeOldBinaryEntry(CpioArchiveEntry entry, boolean swapHalfWord)
-