Package | Description |
---|---|
org.tukaani.xz |
XZ data compression support.
|
org.tukaani.xz.check |
Modifier and Type | Method and Description |
---|---|
static int |
LZMAInputStream.getMemoryUsage(int dictSize,
byte propsByte)
Gets approximate decompressor memory requirements as kibibytes for
the given dictionary size and LZMA properties byte (lc, lp, and pb).
|
void |
LZMA2Options.setDepthLimit(int depthLimit)
Sets the match finder search depth limit.
|
void |
LZMA2Options.setDictSize(int dictSize)
Sets the dictionary size in bytes.
|
void |
DeltaOptions.setDistance(int distance)
Sets the delta distance in bytes.
|
void |
LZMA2Options.setLc(int lc)
Sets the number of literal context bits.
|
void |
LZMA2Options.setLcLp(int lc,
int lp)
Sets the number of literal context bits and literal position bits.
|
void |
LZMA2Options.setLp(int lp)
Sets the number of literal position bits.
|
void |
LZMA2Options.setMatchFinder(int mf)
Sets the match finder type.
|
void |
LZMA2Options.setMode(int mode)
Sets the compression mode.
|
void |
LZMA2Options.setNiceLen(int niceLen)
Sets the nice length of matches.
|
void |
LZMA2Options.setPb(int pb)
Sets the number of position bits.
|
void |
LZMA2Options.setPreset(int preset)
Sets the compression options to the given preset.
|
Constructor and Description |
---|
DeltaOptions(int distance)
Creates new Delta options and sets the distance to the given value.
|
LZMA2Options(int preset)
Creates new LZMA2 options and sets them to the given preset.
|
LZMA2Options(int dictSize,
int lc,
int lp,
int pb,
int mode,
int niceLen,
int mf,
int depthLimit)
Creates new LZMA2 options and sets them to the given custom values.
|
Modifier and Type | Method and Description |
---|---|
static Check |
Check.getInstance(int checkType) |