Java org.apache.commons.compress.archivers.cpio CpioArchiveEntry fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.archivers.cpio CpioArchiveEntry fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.archivers.cpio CpioArchiveEntry.

The text is from its open source code.

Constructor

CpioArchiveEntry(final short format, final String name)
Creates a CPIOArchiveEntry with a specified name.
CpioArchiveEntry(final String name, final long size)
Creates a CPIOArchiveEntry with a specified name.
CpioArchiveEntry(File inputFile, String entryName)
Creates a CPIOArchiveEntry with a specified name for a specified file.
CpioArchiveEntry(final short format, final String name, final long size)
Creates a CPIOArchiveEntry with a specified name.
CpioArchiveEntry(final short format, File inputFile, String entryName)
Creates a CPIOArchiveEntry with a specified name for a specified file.
CpioArchiveEntry(final short format)
Creates a CPIOArchiveEntry with a specified format.
CpioArchiveEntry(final String name)
Creates a CPIOArchiveEntry with a specified name.

Method

intgetAlignmentBoundary()
Get the alignment boundary for this CPIO format
longgetChksum()
Get the checksum.
longgetDeviceMaj()
Get the major device id.
longgetDeviceMin()
Get the minor device id
longgetInode()
Set the inode.
longgetMode()
Get the mode of this entry (e.g.
StringgetName()
Get the name.
longgetNumberOfLinks()
Get the number of links.
longgetSize()
Get the filesize.
booleanisDirectory()
Check if this entry represents a directory.
booleanisRegularFile()
Check if this entry represents a regular file.
voidsetGID(final long gid)
Set the group id.
voidsetMode(final long mode)
Set the mode of this entry (e.g.
voidsetSize(final long size)
Set the filesize.
voidsetTime(final long time)
Set the time in seconds.
voidsetUID(final long uid)
Set the user id.