Class DumpArchiveEntry.TapeSegmentHeader
- java.lang.Object
-
- org.apache.commons.compress.archivers.dump.DumpArchiveEntry.TapeSegmentHeader
-
- Enclosing class:
- DumpArchiveEntry
static class DumpArchiveEntry.TapeSegmentHeader extends java.lang.Object
Archive entry as stored on tape. There is one TSH for (at most) every 512k in the file.
-
-
Constructor Summary
Constructors Constructor Description TapeSegmentHeader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCdata(int idx)
int
getCount()
int
getHoles()
int
getIno()
DumpArchiveConstants.SEGMENT_TYPE
getType()
int
getVolume()
(package private) void
setIno(int ino)
-
-
-
Field Detail
-
type
private DumpArchiveConstants.SEGMENT_TYPE type
-
volume
private int volume
-
ino
private int ino
-
count
private int count
-
holes
private int holes
-
cdata
private final byte[] cdata
-
-
Method Detail
-
getType
public DumpArchiveConstants.SEGMENT_TYPE getType()
-
getVolume
public int getVolume()
-
getIno
public int getIno()
-
setIno
void setIno(int ino)
-
getCount
public int getCount()
-
getHoles
public int getHoles()
-
getCdata
public int getCdata(int idx)
-
-