Package | Description |
---|---|
org.tukaani.xz |
XZ data compression support.
|
Modifier and Type | Class and Description |
---|---|
class |
ARMOptions
BCJ filter for little endian ARM instructions.
|
class |
ARMThumbOptions
BCJ filter for little endian ARM-Thumb instructions.
|
class |
DeltaOptions
Delta filter options.
|
class |
IA64Options
BCJ filter for Itanium (IA-64) instructions.
|
class |
LZMA2Options
LZMA2 compression options.
|
class |
PowerPCOptions
BCJ filter for big endian PowerPC instructions.
|
class |
SPARCOptions
BCJ filter for SPARC.
|
class |
X86Options
BCJ filter for x86 (32-bit and 64-bit) instructions.
|
Modifier and Type | Method and Description |
---|---|
static int |
FilterOptions.getDecoderMemoryUsage(FilterOptions[] options)
Gets how much memory the decoder will need with
the given filter chain.
|
static int |
FilterOptions.getEncoderMemoryUsage(FilterOptions[] options)
Gets how much memory the encoder will need with
the given filter chain.
|
void |
XZOutputStream.updateFilters(FilterOptions filterOptions)
Updates the filter chain with a single filter.
|
void |
XZOutputStream.updateFilters(FilterOptions[] filterOptions)
Updates the filter chain with 1-4 filters.
|
Constructor and Description |
---|
XZOutputStream(java.io.OutputStream out,
FilterOptions filterOptions)
Creates a new XZ compressor using one filter and CRC64 as
the integrity check.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions[] filterOptions)
Creates a new XZ compressor using 1-4 filters and CRC64 as
the integrity check.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions[] filterOptions,
ArrayCache arrayCache)
Creates a new XZ compressor using 1-4 filters and CRC64 as
the integrity check.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions[] filterOptions,
int checkType)
Creates a new XZ compressor using 1-4 filters and the specified
integrity check type.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions[] filterOptions,
int checkType,
ArrayCache arrayCache)
Creates a new XZ compressor using 1-4 filters and the specified
integrity check type.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions filterOptions,
ArrayCache arrayCache)
Creates a new XZ compressor using one filter and CRC64 as
the integrity check.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions filterOptions,
int checkType)
Creates a new XZ compressor using one filter and the specified
integrity check type.
|
XZOutputStream(java.io.OutputStream out,
FilterOptions filterOptions,
int checkType,
ArrayCache arrayCache)
Creates a new XZ compressor using one filter and the specified
integrity check type.
|