Uses of Class
org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorOutputStream.BlockSize
-
Packages that use FramedLZ4CompressorOutputStream.BlockSize Package Description org.apache.commons.compress.compressors.lz4 Provides stream classes for the LZ4 algorithm. -
-
Uses of FramedLZ4CompressorOutputStream.BlockSize in org.apache.commons.compress.compressors.lz4
Fields in org.apache.commons.compress.compressors.lz4 declared as FramedLZ4CompressorOutputStream.BlockSize Modifier and Type Field Description private FramedLZ4CompressorOutputStream.BlockSize
FramedLZ4CompressorOutputStream.Parameters. blockSize
Methods in org.apache.commons.compress.compressors.lz4 that return FramedLZ4CompressorOutputStream.BlockSize Modifier and Type Method 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.Constructors in org.apache.commons.compress.compressors.lz4 with parameters of type FramedLZ4CompressorOutputStream.BlockSize Constructor 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.
-