Package | Description |
---|---|
org.apache.commons.compress.compressors.lz4 |
Provides stream classes for the
LZ4
algorithm.
|
Modifier and Type | Field and Description |
---|---|
private FramedLZ4CompressorOutputStream.BlockSize |
FramedLZ4CompressorOutputStream.Parameters.blockSize |
Modifier and Type | Method and Description |
---|---|
static FramedLZ4CompressorOutputStream.BlockSize |
FramedLZ4CompressorOutputStream.BlockSize.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FramedLZ4CompressorOutputStream.BlockSize[] |
FramedLZ4CompressorOutputStream.BlockSize.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Parameters(FramedLZ4CompressorOutputStream.BlockSize blockSize)
Sets up custom a custom block size for the LZ4 stream but
otherwise uses the defaults of enabled content checksum,
disabled block checksums and independent blocks.
|
Parameters(FramedLZ4CompressorOutputStream.BlockSize blockSize,
boolean withContentChecksum,
boolean withBlockChecksum,
boolean withBlockDependency)
Sets up custom parameters for the LZ4 stream.
|
Parameters(FramedLZ4CompressorOutputStream.BlockSize blockSize,
boolean withContentChecksum,
boolean withBlockChecksum,
boolean withBlockDependency,
Parameters lz77params)
Sets up custom parameters for the LZ4 stream.
|
Parameters(FramedLZ4CompressorOutputStream.BlockSize blockSize,
Parameters lz77params)
Sets up custom a custom block size for the LZ4 stream but
otherwise uses the defaults of enabled content checksum,
disabled block checksums and independent blocks.
|