Checksum
view of this instance.Checksum
view of this instance.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the compressed
length.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the compressed
length.compress(src, srcOff, srcLen, dest, destOff, dest.length - destOff)
.compress(src, 0, src.length, dest, 0)
.src[srcOff:srcOff+srcLen]
compressed.compress(src, 0, src.length)
.src
into dest
.compress(src, 0, src.length)
.src[srcOff:srcOff+srcLen]
compressed.compress(src, 0, src.length, dest, 0)
.compress(src, srcOff, srcLen, dest, destOff, dest.length - destOff)
.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the compressed
length.src
into dest
.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the compressed
length.decompress(src, 0, dest, 0)
.LZ4FastDecompressor
was specified to the constructor,
decompresses src[srcOff:]
into dest[destOff:]
and returns the number of bytes read from src
, and
when LZ4SafeDecompressor
was specified to the constructor,
decompresses src[srcOff:src.length]
into dest[destOff:]
and returns the number of decompressed bytes written into dest
.LZ4FastDecompressor
was specified to the constructor,
decompresses src[srcOff:]
into dest[destOff:]
and returns the number of bytes read from src
, and
when LZ4SafeDecompressor
was specified to the constructor,
decompresses src[srcOff:srcOff+srcLen]
into dest[destOff:]
and returns the number of decompressed bytes written into dest
.decompress(src, 0)
.src[srcOff:]
decompressed when LZ4FastDecompressor
was specified to the constructor,
or src[srcOff:src.length]
decompressed when
LZ4SafeDecompressor
was specified to the constructor.src[srcOff:]
decompressed when LZ4FastDecompressor
was specified to the constructor,
or src[srcOff:srcOff+srcLen]
decompressed when
LZ4SafeDecompressor
was specified to the constructor.src
into dest
.LZ4FastDecompressor
was specified to the constructor,
decompresses src[srcOff:]
into dest[destOff:]
and returns the number of bytes read from src
, and
when LZ4SafeDecompressor
was specified to the constructor,
decompresses src[srcOff:src.remaining()]
into dest[destOff:]
and returns the number of decompressed bytes written into dest
.LZ4FastDecompressor
was specified to the constructor,
decompresses src[srcOff:]
into dest[destOff:]
and returns the number of bytes read from src
, and
when LZ4SafeDecompressor
was specified to the constructor,
decompresses src[srcOff:srcOff+srcLen]
into dest[destOff:]
and returns the number of decompressed bytes written into dest
.src[srcOff:]
into dest[destOff:destOff+destLen]
and returns the number of bytes read from src
.src[srcOff:]
into dest[destOff:destOff+destLen]
and returns the number of bytes read from src
.decompress(src, 0, dest, 0, destLen)
.decompress(src, dest, dest.length)
.src[srcOff:?]
decompressed.decompress(src, 0, destLen)
.src
into dest
.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the number of
decompressed bytes written into dest
.src[srcOff:srcOff+srcLen]
into
dest[destOff:destOff+maxDestLen]
and returns the number of
decompressed bytes written into dest
.decompress(src, srcOff, srcLen, dest, destOff, dest.length - destOff)
.decompress(src, 0, src.length, dest, 0)
src[srcOff:srcOff+srcLen]
decompressed.decompress(src, 0, src.length, maxDestLen)
.src
into dest
.LZ4Compressor
.LZ4FastDecompressor
instance.LZ4Factory
instance.XXHashFactory
instance.LZ4Factory
instance which does not
rely on JNI bindings.XXHashFactory
instance which does not
rely on JNI bindings.LZ4BlockOutputStream.close()
except that it doesn't close the underlying stream.OutputStream
.src
.src[srcOff:]
.src
.src[srcOff:]
.buf[off:off+len]
using seed
seed
.ByteBuffer
.ByteBuffer
.buf[off:off+len]
using seed
seed
.ByteBuffer
.ByteBuffer
.XXHash32
instance.XXHash64
instance.LZ4Compressor
which requires more memory than
LZ4Factory.fastCompressor()
and is slower but compresses more efficiently.LZ4Compressor
which requires more memory than
LZ4Factory.fastCompressor()
and is slower but compresses more efficiently.InputStream
implementation to decode data written with
LZ4BlockOutputStream
.XXHash32
for checksuming.XXHash32
for checksuming.XXHash32
for checksuming.OutputStream
with configurable block size.StreamingXXHash32
and doesn't sync flush.LZ4FastDecompressor
instead.LZ4CompressorWithLength
.LZ4CompressorWithLength
.LZ4CompressorWithLength
.InputStream
that will decompress data using fastest instances of LZ4SafeDecompressor
and XXHash32
.InputStream
that will decompress data using fastest instances of LZ4SafeDecompressor
and XXHash32
.InputStream
that will decompress data using the LZ4 algorithm.InputStream
that will decompress data using the LZ4 algorithm.OutputStream
that will compress data of unknown size using the LZ4 algorithm.OutputStream
that will compress data using using fastest instances of LZ4Compressor
and XXHash32
.OutputStream
that will compress data using the specified instances of LZ4Compressor
and XXHash32
.OutputStream
that will compress data using the LZ4 algorithm.OutputStream
that will compress data using the LZ4 algorithm with 4-MB blocks.LZ4SafeDecompressor
instead.length
.length
.LZ4Factory
instance that returns compressors and
decompressors that are native bindings to the original C library.XXHashFactory
that returns XXHash32
instances that
are native bindings to the original C API.StreamingXXHash32
instance.StreamingXXHash64
instance.LZ4SafeDecompressor
instance.LZ4Factory
instance that returns compressors and
decompressors that are written with Java's official API.XXHashFactory
that returns XXHash32
instances that
are written with Java's official API.XXHash32
.XXHash64
.LZ4Factory
instance that returns compressors and
decompressors that may use Unsafe
to speed up compression
and decompression.XXHash32
and StreamingXXHash32
instances.