- LZ4BlockInputStream - Class in net.jpountz.lz4
-
- LZ4BlockInputStream(InputStream, LZ4FastDecompressor, Checksum, boolean) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream.
- LZ4BlockInputStream(InputStream, LZ4FastDecompressor, Checksum) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream.
- LZ4BlockInputStream(InputStream, LZ4FastDecompressor) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream, using
XXHash32
for checksuming.
- LZ4BlockInputStream(InputStream, boolean) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream, using
XXHash32
for checksuming.
- LZ4BlockInputStream(InputStream) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream, using
XXHash32
for checksuming.
- LZ4BlockOutputStream - Class in net.jpountz.lz4
-
Streaming LZ4 (not compatible with the LZ4 Frame format).
- LZ4BlockOutputStream(OutputStream, int, LZ4Compressor, Checksum, boolean) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new OutputStream
with configurable block size.
- LZ4BlockOutputStream(OutputStream, int, LZ4Compressor) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which checks stream integrity using
StreamingXXHash32
and doesn't sync flush.
- LZ4BlockOutputStream(OutputStream, int) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which compresses with the standard LZ4 compression
algorithm.
- LZ4BlockOutputStream(OutputStream) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which compresses into blocks of 64 KB.
- LZ4Compressor - Class in net.jpountz.lz4
-
LZ4 compressor.
- LZ4Compressor() - Constructor for class net.jpountz.lz4.LZ4Compressor
-
- LZ4CompressorWithLength - Class in net.jpountz.lz4
-
Covenience class to include the length of the original decompressed data
in the output compressed data, so that the user does not need to save
the length at anywhere else.
- LZ4CompressorWithLength(LZ4Compressor) - Constructor for class net.jpountz.lz4.LZ4CompressorWithLength
-
Creates a new compressor that includes the length of the original
decompressed data in the output compressed data.
- LZ4Decompressor - Interface in net.jpountz.lz4
-
- LZ4DecompressorWithLength - Class in net.jpountz.lz4
-
- LZ4DecompressorWithLength(LZ4FastDecompressor) - Constructor for class net.jpountz.lz4.LZ4DecompressorWithLength
-
- LZ4Exception - Exception in net.jpountz.lz4
-
LZ4 compression or decompression error.
- LZ4Exception(String, Throwable) - Constructor for exception net.jpountz.lz4.LZ4Exception
-
- LZ4Exception(String) - Constructor for exception net.jpountz.lz4.LZ4Exception
-
- LZ4Exception() - Constructor for exception net.jpountz.lz4.LZ4Exception
-
- LZ4Factory - Class in net.jpountz.lz4
-
Entry point for the LZ4 API.
- LZ4FastDecompressor - Class in net.jpountz.lz4
-
LZ4 decompressor that requires the size of the original input to be known.
- LZ4FastDecompressor() - Constructor for class net.jpountz.lz4.LZ4FastDecompressor
-
- LZ4FrameInputStream - Class in net.jpountz.lz4
-
Implementation of the v1.5.1 LZ4 Frame format.
- LZ4FrameInputStream(InputStream) - Constructor for class net.jpountz.lz4.LZ4FrameInputStream
-
- LZ4FrameInputStream(InputStream, LZ4SafeDecompressor, XXHash32) - Constructor for class net.jpountz.lz4.LZ4FrameInputStream
-
Creates a new InputStream
that will decompress data using the LZ4 algorithm.
- LZ4FrameOutputStream - Class in net.jpountz.lz4
-
Implementation of the v1.5.1 LZ4 Frame format.
- LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new OutputStream
that will compress data of unknown size using the LZ4 algorithm.
- LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, long, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStream
that will compress data using using fastest instances of
LZ4Compressor
and
XXHash32
.
- LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, long, LZ4Compressor, XXHash32, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStream
that will compress data using the specified instances of
LZ4Compressor
and
XXHash32
.
- LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new OutputStream
that will compress data using the LZ4 algorithm.
- LZ4FrameOutputStream(OutputStream) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new OutputStream
that will compress data using the LZ4 algorithm with 4-MB blocks.
- LZ4FrameOutputStream.BD - Class in net.jpountz.lz4
-
- LZ4FrameOutputStream.BLOCKSIZE - Enum in net.jpountz.lz4
-
- LZ4FrameOutputStream.FLG - Class in net.jpountz.lz4
-
- LZ4FrameOutputStream.FLG.Bits - Enum in net.jpountz.lz4
-
- LZ4SafeDecompressor - Class in net.jpountz.lz4
-
LZ4 decompressor that requires the size of the compressed data to be known.
- LZ4SafeDecompressor() - Constructor for class net.jpountz.lz4.LZ4SafeDecompressor
-
- LZ4UnknownSizeDecompressor - Interface in net.jpountz.lz4
-