Index
All Classes and Interfaces|All Packages|Serialized Form
A
- asChecksum() - Method in class net.jpountz.xxhash.StreamingXXHash32
-
Returns a
Checksumview of this instance. - asChecksum() - Method in class net.jpountz.xxhash.StreamingXXHash64
-
Returns a
Checksumview of this instance. - available() - Method in class net.jpountz.lz4.LZ4BlockInputStream
- available() - Method in class net.jpountz.lz4.LZ4FrameInputStream
B
- BLOCK_CHECKSUM - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
- BLOCK_INDEPENDENCE - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
- ByteBufferUtils - Enum Class in net.jpountz.util
C
- checkLength(int) - Static method in enum class net.jpountz.util.SafeUtils
- checkLength(int) - Static method in enum class net.jpountz.util.UnsafeUtils
- checkNotReadOnly(ByteBuffer) - Static method in enum class net.jpountz.util.ByteBufferUtils
- checkRange(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- checkRange(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- checkRange(byte[], int, int) - Static method in enum class net.jpountz.util.SafeUtils
- checkRange(byte[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- checkRange(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- checkRange(ByteBuffer, int, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- close() - Method in class net.jpountz.lz4.LZ4BlockOutputStream
- close() - Method in class net.jpountz.lz4.LZ4FrameInputStream
- close() - Method in class net.jpountz.lz4.LZ4FrameOutputStream
- close() - Method in class net.jpountz.xxhash.StreamingXXHash32
-
Releases any system resources associated with this instance.
- close() - Method in class net.jpountz.xxhash.StreamingXXHash64
-
Releases any system resources associated with this instance.
- compress(byte[]) - Method in class net.jpountz.lz4.LZ4Compressor
-
Convenience method, equivalent to calling
compress(src, 0, src.length). - compress(byte[]) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Convenience method, equivalent to calling
compress(src, 0, src.length). - compress(byte[], byte[]) - Method in class net.jpountz.lz4.LZ4Compressor
-
Convenience method, equivalent to calling
compress(src, 0, src.length, dest, 0). - compress(byte[], byte[]) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Convenience method, equivalent to calling
compress(src, 0, src.length, dest, 0). - compress(byte[], int, int) - Method in class net.jpountz.lz4.LZ4Compressor
-
Convenience method which returns
src[srcOff:srcOff+srcLen]compressed. - compress(byte[], int, int) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Convenience method which returns
src[srcOff:srcOff+srcLen]compressed. - compress(byte[], int, int, byte[], int) - Method in class net.jpountz.lz4.LZ4Compressor
-
Convenience method, equivalent to calling
compress(src, srcOff, srcLen, dest, destOff, dest.length - destOff). - compress(byte[], int, int, byte[], int) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Convenience method, equivalent to calling
compress(src, srcOff, srcLen, dest, destOff, dest.length - destOff). - compress(byte[], int, int, byte[], int, int) - Method in class net.jpountz.lz4.LZ4Compressor
-
Compresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the compressed length. - compress(byte[], int, int, byte[], int, int) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Compresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the compressed length. - compress(ByteBuffer, int, int, ByteBuffer, int, int) - Method in class net.jpountz.lz4.LZ4Compressor
-
Compresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the compressed length. - compress(ByteBuffer, int, int, ByteBuffer, int, int) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Compresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the compressed length. - compress(ByteBuffer, ByteBuffer) - Method in class net.jpountz.lz4.LZ4Compressor
-
Compresses
srcintodest. - compress(ByteBuffer, ByteBuffer) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Compresses
srcintodest. - CONTENT_CHECKSUM - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
- CONTENT_SIZE - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
D
- decompress(byte[]) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Convenience method, equivalent to calling
decompress(src, 0). - decompress(byte[], byte[]) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Convenience method, equivalent to calling
decompress(src, 0, dest, 0). - decompress(byte[], byte[]) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Convenience method, equivalent to calling
decompress(src, dest, dest.length). - decompress(byte[], byte[]) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Convenience method, equivalent to calling
decompress(src, 0, src.length, dest, 0) - decompress(byte[], byte[], int) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Convenience method, equivalent to calling
decompress(src, 0, dest, 0, destLen). - decompress(byte[], int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Convenience method which returns
src[srcOff:]decompressed whenLZ4FastDecompressorwas specified to the constructor, orsrc[srcOff:src.length]decompressed whenLZ4SafeDecompressorwas specified to the constructor. - decompress(byte[], int) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Convenience method, equivalent to calling
decompress(src, 0, destLen). - decompress(byte[], int) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Convenience method, equivalent to calling
decompress(src, 0, src.length, maxDestLen). - decompress(byte[], int, byte[], int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
When
LZ4FastDecompressorwas specified to the constructor, decompressessrc[srcOff:]intodest[destOff:]and returns the number of bytes read fromsrc, and whenLZ4SafeDecompressorwas specified to the constructor, decompressessrc[srcOff:src.length]intodest[destOff:]and returns the number of decompressed bytes written intodest. - decompress(byte[], int, byte[], int, int) - Method in interface net.jpountz.lz4.LZ4Decompressor
-
Deprecated.
- decompress(byte[], int, byte[], int, int) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Decompresses
src[srcOff:]intodest[destOff:destOff+destLen]and returns the number of bytes read fromsrc. - decompress(byte[], int, int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Convenience method which returns
src[srcOff:]decompressed whenLZ4FastDecompressorwas specified to the constructor, orsrc[srcOff:srcOff+srcLen]decompressed whenLZ4SafeDecompressorwas specified to the constructor. - decompress(byte[], int, int) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Convenience method which returns
src[srcOff:?]decompressed. - decompress(byte[], int, int, byte[], int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
When
LZ4FastDecompressorwas specified to the constructor, decompressessrc[srcOff:]intodest[destOff:]and returns the number of bytes read fromsrc, and whenLZ4SafeDecompressorwas specified to the constructor, decompressessrc[srcOff:srcOff+srcLen]intodest[destOff:]and returns the number of decompressed bytes written intodest. - decompress(byte[], int, int, byte[], int) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Convenience method, equivalent to calling
decompress(src, srcOff, srcLen, dest, destOff, dest.length - destOff). - decompress(byte[], int, int, byte[], int) - Method in interface net.jpountz.lz4.LZ4UnknownSizeDecompressor
-
Deprecated.
- decompress(byte[], int, int, byte[], int, int) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Decompresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the number of decompressed bytes written intodest. - decompress(byte[], int, int, byte[], int, int) - Method in interface net.jpountz.lz4.LZ4UnknownSizeDecompressor
-
Deprecated.
- decompress(byte[], int, int, int) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Convenience method which returns
src[srcOff:srcOff+srcLen]decompressed. - decompress(ByteBuffer, int, int, ByteBuffer, int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
When
LZ4FastDecompressorwas specified to the constructor, decompressessrc[srcOff:]intodest[destOff:]and returns the number of bytes read fromsrc, and whenLZ4SafeDecompressorwas specified to the constructor, decompressessrc[srcOff:srcOff+srcLen]intodest[destOff:]and returns the number of decompressed bytes written intodest. - decompress(ByteBuffer, int, int, ByteBuffer, int, int) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Decompresses
src[srcOff:srcOff+srcLen]intodest[destOff:destOff+maxDestLen]and returns the number of decompressed bytes written intodest. - decompress(ByteBuffer, int, ByteBuffer, int) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
When
LZ4FastDecompressorwas specified to the constructor, decompressessrc[srcOff:]intodest[destOff:]and returns the number of bytes read fromsrc, and whenLZ4SafeDecompressorwas specified to the constructor, decompressessrc[srcOff:src.remaining()]intodest[destOff:]and returns the number of decompressed bytes written intodest. - decompress(ByteBuffer, int, ByteBuffer, int, int) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Decompresses
src[srcOff:]intodest[destOff:destOff+destLen]and returns the number of bytes read fromsrc. - decompress(ByteBuffer, ByteBuffer) - Method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Decompresses
srcintodest. - decompress(ByteBuffer, ByteBuffer) - Method in class net.jpountz.lz4.LZ4FastDecompressor
-
Decompresses
srcintodest. - decompress(ByteBuffer, ByteBuffer) - Method in class net.jpountz.lz4.LZ4SafeDecompressor
-
Decompresses
srcintodest. - decompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Deprecated.
F
- fastCompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Returns a blazing fast
LZ4Compressor. - fastDecompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4FastDecompressorinstance. - fastestInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Returns the fastest available
LZ4Factoryinstance. - fastestInstance() - Static method in class net.jpountz.xxhash.XXHashFactory
-
Returns the fastest available
XXHashFactoryinstance. - fastestJavaInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Returns the fastest available
LZ4Factoryinstance which does not rely on JNI bindings. - fastestJavaInstance() - Static method in class net.jpountz.xxhash.XXHashFactory
-
Returns the fastest available
XXHashFactoryinstance which does not rely on JNI bindings. - finish() - Method in class net.jpountz.lz4.LZ4BlockOutputStream
-
Same as
LZ4BlockOutputStream.close()except that it doesn't close the underlying stream. - FLG(int, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream.FLG
- flush() - Method in class net.jpountz.lz4.LZ4BlockOutputStream
-
Flushes this compressed
OutputStream. - flush() - Method in class net.jpountz.lz4.LZ4FrameOutputStream
- fromByte(byte) - Static method in class net.jpountz.lz4.LZ4FrameOutputStream.BD
- fromByte(byte) - Static method in class net.jpountz.lz4.LZ4FrameOutputStream.FLG
G
- getBlockMaximumSize() - Method in class net.jpountz.lz4.LZ4FrameOutputStream.BD
- getDecompressedLength(byte[]) - Static method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Returns the decompressed length of compressed data in
src. - getDecompressedLength(byte[], int) - Static method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Returns the decompressed length of compressed data in
src[srcOff:]. - getDecompressedLength(ByteBuffer) - Static method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Returns the decompressed length of compressed data in
src. - getDecompressedLength(ByteBuffer, int) - Static method in class net.jpountz.lz4.LZ4DecompressorWithLength
-
Returns the decompressed length of compressed data in
src[srcOff:]. - getExpectedContentSize() - Method in class net.jpountz.lz4.LZ4FrameInputStream
-
Returns the optional Content Size value set in Frame Descriptor.
- getIndicator() - Method in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
- getValue() - Method in class net.jpountz.xxhash.StreamingXXHash32
-
Returns the value of the checksum.
- getValue() - Method in class net.jpountz.xxhash.StreamingXXHash64
-
Returns the value of the checksum.
- getVersion() - Method in class net.jpountz.lz4.LZ4FrameOutputStream.FLG
H
- hash(byte[], int, int, int) - Method in class net.jpountz.xxhash.XXHash32
-
Computes the 32-bits hash of
buf[off:off+len]using seedseed. - hash(byte[], int, int, long) - Method in class net.jpountz.xxhash.XXHash64
-
Computes the 64-bits hash of
buf[off:off+len]using seedseed. - hash(ByteBuffer, int) - Method in class net.jpountz.xxhash.XXHash32
-
Computes the hash of the given
ByteBuffer. - hash(ByteBuffer, int, int, int) - Method in class net.jpountz.xxhash.XXHash32
-
Computes the hash of the given slice of the
ByteBuffer. - hash(ByteBuffer, int, int, long) - Method in class net.jpountz.xxhash.XXHash64
-
Computes the hash of the given slice of the
ByteBuffer. - hash(ByteBuffer, long) - Method in class net.jpountz.xxhash.XXHash64
-
Computes the hash of the given
ByteBuffer. - hash32() - Method in class net.jpountz.xxhash.XXHashFactory
-
Returns a
XXHash32instance. - hash64() - Method in class net.jpountz.xxhash.XXHashFactory
-
Returns a
XXHash64instance. - highCompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4Compressorwhich requires more memory thanLZ4Factory.fastCompressor()and is slower but compresses more efficiently. - highCompressor(int) - Method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4Compressorwhich requires more memory thanLZ4Factory.fastCompressor()and is slower but compresses more efficiently.
I
- inLittleEndianOrder(ByteBuffer) - Static method in enum class net.jpountz.util.ByteBufferUtils
- inNativeByteOrder(ByteBuffer) - Static method in enum class net.jpountz.util.ByteBufferUtils
- isEnabled(LZ4FrameOutputStream.FLG.Bits) - Method in class net.jpountz.lz4.LZ4FrameOutputStream.FLG
- isExpectedContentSizeDefined() - Method in class net.jpountz.lz4.LZ4FrameInputStream
-
Checks if the optionnal Content Size is set (FLG.Bits.CONTENT_SIZE is enabled).
- isLoaded() - Static method in enum class net.jpountz.util.Native
- isUnalignedAccessAllowed() - Static method in enum class net.jpountz.util.Utils
L
- load() - Static method in enum class net.jpountz.util.Native
- LZ4BlockInputStream - Class in net.jpountz.lz4
-
InputStreamimplementation to decode data written withLZ4BlockOutputStream. - LZ4BlockInputStream(InputStream) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream, using
XXHash32for 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
XXHash32for checksuming. - LZ4BlockInputStream(InputStream, LZ4FastDecompressor) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream, using
XXHash32for checksuming. - 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, Checksum, boolean) - Constructor for class net.jpountz.lz4.LZ4BlockInputStream
-
Creates a new LZ4 input stream to read from the specified underlying InputStream.
- LZ4BlockOutputStream - Class in net.jpountz.lz4
-
Streaming LZ4 (not compatible with the LZ4 Frame format).
- LZ4BlockOutputStream(OutputStream) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which compresses into blocks of 64 KB.
- LZ4BlockOutputStream(OutputStream, int) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which compresses with the standard LZ4 compression algorithm.
- LZ4BlockOutputStream(OutputStream, int, LZ4Compressor) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new instance which checks stream integrity using
StreamingXXHash32and doesn't sync flush. - LZ4BlockOutputStream(OutputStream, int, LZ4Compressor, Checksum, boolean) - Constructor for class net.jpountz.lz4.LZ4BlockOutputStream
-
Creates a new
OutputStreamwith configurable block size. - 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
-
Deprecated.Use
LZ4FastDecompressorinstead. - LZ4DecompressorWithLength - Class in net.jpountz.lz4
-
Convenience class to decompress data compressed by
LZ4CompressorWithLength. - LZ4DecompressorWithLength(LZ4FastDecompressor) - Constructor for class net.jpountz.lz4.LZ4DecompressorWithLength
-
Creates a new decompressor to decompress data compressed by
LZ4CompressorWithLength. - LZ4DecompressorWithLength(LZ4SafeDecompressor) - Constructor for class net.jpountz.lz4.LZ4DecompressorWithLength
-
Creates a new decompressor to decompress data compressed by
LZ4CompressorWithLength. - LZ4Exception - Exception Class in net.jpountz.lz4
-
LZ4 compression or decompression error.
- LZ4Exception() - Constructor for exception class net.jpountz.lz4.LZ4Exception
- LZ4Exception(String) - Constructor for exception class net.jpountz.lz4.LZ4Exception
- LZ4Exception(String, Throwable) - Constructor for exception class 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
-
Creates a new
InputStreamthat will decompress data using fastest instances ofLZ4SafeDecompressorandXXHash32. - LZ4FrameInputStream(InputStream, boolean) - Constructor for class net.jpountz.lz4.LZ4FrameInputStream
-
Creates a new
InputStreamthat will decompress data using fastest instances ofLZ4SafeDecompressorandXXHash32. - LZ4FrameInputStream(InputStream, LZ4SafeDecompressor, XXHash32) - Constructor for class net.jpountz.lz4.LZ4FrameInputStream
-
Creates a new
InputStreamthat will decompress data using the LZ4 algorithm. - LZ4FrameInputStream(InputStream, LZ4SafeDecompressor, XXHash32, boolean) - Constructor for class net.jpountz.lz4.LZ4FrameInputStream
-
Creates a new
InputStreamthat will decompress data using the LZ4 algorithm. - LZ4FrameOutputStream - Class in net.jpountz.lz4
-
Implementation of the v1.5.1 LZ4 Frame format.
- LZ4FrameOutputStream(OutputStream) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStreamthat will compress data using the LZ4 algorithm with 4-MB blocks. - LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStreamthat will compress data using the LZ4 algorithm. - LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, long, LZ4Compressor, XXHash32, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStreamthat will compress data using the specified instances ofLZ4CompressorandXXHash32. - LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, long, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStreamthat will compress data using using fastest instances ofLZ4CompressorandXXHash32. - LZ4FrameOutputStream(OutputStream, LZ4FrameOutputStream.BLOCKSIZE, LZ4FrameOutputStream.FLG.Bits...) - Constructor for class net.jpountz.lz4.LZ4FrameOutputStream
-
Creates a new
OutputStreamthat will compress data of unknown size using the LZ4 algorithm. - LZ4FrameOutputStream.BD - Class in net.jpountz.lz4
- LZ4FrameOutputStream.BLOCKSIZE - Enum Class in net.jpountz.lz4
- LZ4FrameOutputStream.FLG - Class in net.jpountz.lz4
- LZ4FrameOutputStream.FLG.Bits - Enum Class 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
-
Deprecated.Use
LZ4SafeDecompressorinstead.
M
- main(String[]) - Static method in class net.jpountz.lz4.LZ4Factory
-
Prints the fastest instance.
- main(String[]) - Static method in class net.jpountz.xxhash.XXHashFactory
-
Prints the fastest instance.
- mark(int) - Method in class net.jpountz.lz4.LZ4BlockInputStream
- mark(int) - Method in class net.jpountz.lz4.LZ4FrameInputStream
- markSupported() - Method in class net.jpountz.lz4.LZ4BlockInputStream
- markSupported() - Method in class net.jpountz.lz4.LZ4FrameInputStream
- maxCompressedLength(int) - Method in class net.jpountz.lz4.LZ4Compressor
-
Returns the maximum compressed length for an input of size
length. - maxCompressedLength(int) - Method in class net.jpountz.lz4.LZ4CompressorWithLength
-
Returns the maximum compressed length for an input of size
length.
N
- Native - Enum Class in net.jpountz.util
-
FOR INTERNAL USE ONLY
- NATIVE_BYTE_ORDER - Static variable in enum class net.jpountz.util.Utils
- nativeInsecureInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Deprecated.Never decompress untrusted inputs with this instance. Prefer
LZ4Factory.nativeInstance(). - nativeInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4Factoryinstance that returns compressors and decompressors that are native bindings to the original C library. - nativeInstance() - Static method in class net.jpountz.xxhash.XXHashFactory
-
Returns a
XXHashFactorythat returnsXXHash32instances that are native bindings to the original C API. - net.jpountz.lz4 - package net.jpountz.lz4
-
LZ4 compression.
- net.jpountz.util - package net.jpountz.util
-
Utility classes.
- net.jpountz.xxhash - package net.jpountz.xxhash
-
xxhash hashing.
- newStreamingHash32(int) - Method in class net.jpountz.xxhash.XXHashFactory
-
Return a new
StreamingXXHash32instance. - newStreamingHash64(long) - Method in class net.jpountz.xxhash.XXHashFactory
-
Return a new
StreamingXXHash64instance.
R
- read() - Method in class net.jpountz.lz4.LZ4BlockInputStream
- read() - Method in class net.jpountz.lz4.LZ4FrameInputStream
- read(byte[]) - Method in class net.jpountz.lz4.LZ4BlockInputStream
- read(byte[], int, int) - Method in class net.jpountz.lz4.LZ4BlockInputStream
- read(byte[], int, int) - Method in class net.jpountz.lz4.LZ4FrameInputStream
- readByte(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readByte(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readByte(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- readInt(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readInt(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readInt(int[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readInt(int[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readInt(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- readIntBE(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readIntLE(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readIntLE(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readIntLE(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- readLong(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readLong(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- readLongLE(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readLongLE(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readLongLE(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- readShort(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readShort(short[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readShort(short[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readShortLE(byte[], int) - Static method in enum class net.jpountz.util.SafeUtils
- readShortLE(byte[], int) - Static method in enum class net.jpountz.util.UnsafeUtils
- readShortLE(ByteBuffer, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- RESERVED_0 - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
- RESERVED_1 - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
- reset() - Method in class net.jpountz.lz4.LZ4BlockInputStream
- reset() - Method in class net.jpountz.lz4.LZ4FrameInputStream
- reset() - Method in class net.jpountz.xxhash.StreamingXXHash32
-
Resets this instance to the state it had right after instantiation.
- reset() - Method in class net.jpountz.xxhash.StreamingXXHash64
-
Resets this instance to the state it had right after instantiation.
S
- safeDecompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4SafeDecompressorinstance. - safeInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Returns a
LZ4Factoryinstance that returns compressors and decompressors that are written with Java's official API. - safeInstance() - Static method in class net.jpountz.xxhash.XXHashFactory
-
Returns a
XXHashFactorythat returnsXXHash32instances that are written with Java's official API. - SafeUtils - Enum Class in net.jpountz.util
- SIZE_1MB - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
- SIZE_256KB - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
- SIZE_4MB - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
- SIZE_64KB - Enum constant in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
- skip(long) - Method in class net.jpountz.lz4.LZ4BlockInputStream
- skip(long) - Method in class net.jpountz.lz4.LZ4FrameInputStream
- StreamingXXHash32 - Class in net.jpountz.xxhash
-
Streaming interface for
XXHash32. - StreamingXXHash64 - Class in net.jpountz.xxhash
-
Streaming interface for
XXHash64.
T
- toByte() - Method in class net.jpountz.lz4.LZ4FrameOutputStream.BD
- toByte() - Method in class net.jpountz.lz4.LZ4FrameOutputStream.FLG
- toString() - Method in class net.jpountz.lz4.LZ4BlockInputStream
- toString() - Method in class net.jpountz.lz4.LZ4BlockOutputStream
- toString() - Method in class net.jpountz.lz4.LZ4Compressor
- toString() - Method in class net.jpountz.lz4.LZ4Factory
- toString() - Method in class net.jpountz.lz4.LZ4FastDecompressor
- toString() - Method in class net.jpountz.lz4.LZ4SafeDecompressor
- toString() - Method in class net.jpountz.xxhash.StreamingXXHash32
- toString() - Method in class net.jpountz.xxhash.StreamingXXHash64
- toString() - Method in class net.jpountz.xxhash.XXHash32
- toString() - Method in class net.jpountz.xxhash.XXHash64
- toString() - Method in class net.jpountz.xxhash.XXHashFactory
U
- unknownSizeDecompressor() - Method in class net.jpountz.lz4.LZ4Factory
-
Deprecated.
- unsafeInsecureInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Deprecated.Never decompress untrusted inputs with this instance. Prefer
LZ4Factory.unsafeInstance(). - unsafeInstance() - Static method in class net.jpountz.lz4.LZ4Factory
-
Deprecated.Note: It is not yet clear which Unsafe-based implementations are secure. Out of caution, this method currently returns the
LZ4Factory.safeInstance(). In a future version, when security has been assessed, this method may return to Unsafe. - unsafeInstance() - Static method in class net.jpountz.xxhash.XXHashFactory
- UnsafeUtils - Enum Class in net.jpountz.util
- update(byte[], int, int) - Method in class net.jpountz.xxhash.StreamingXXHash32
-
Updates the value of the hash with buf[off:off+len].
- update(byte[], int, int) - Method in class net.jpountz.xxhash.StreamingXXHash64
-
Updates the value of the hash with buf[off:off+len].
- Utils - Enum Class in net.jpountz.util
V
- valueOf(int) - Static method in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.util.ByteBufferUtils
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.util.Native
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.util.SafeUtils
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.util.UnsafeUtils
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class net.jpountz.util.Utils
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class net.jpountz.lz4.LZ4FrameOutputStream.BLOCKSIZE
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.lz4.LZ4FrameOutputStream.FLG.Bits
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.util.ByteBufferUtils
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.util.Native
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.util.SafeUtils
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.util.UnsafeUtils
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class net.jpountz.util.Utils
-
Returns an array containing the constants of this enum class, in the order they are declared.
W
- write(byte[]) - Method in class net.jpountz.lz4.LZ4BlockOutputStream
- write(byte[], int, int) - Method in class net.jpountz.lz4.LZ4BlockOutputStream
- write(byte[], int, int) - Method in class net.jpountz.lz4.LZ4FrameOutputStream
- write(int) - Method in class net.jpountz.lz4.LZ4BlockOutputStream
- write(int) - Method in class net.jpountz.lz4.LZ4FrameOutputStream
- writeByte(byte[], int, byte) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeByte(byte[], int, int) - Static method in enum class net.jpountz.util.SafeUtils
- writeByte(byte[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeByte(ByteBuffer, int, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- writeInt(byte[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeInt(int[], int, int) - Static method in enum class net.jpountz.util.SafeUtils
- writeInt(int[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeInt(ByteBuffer, int, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
- writeLong(byte[], int, long) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeLong(ByteBuffer, int, long) - Static method in enum class net.jpountz.util.ByteBufferUtils
- writeShort(byte[], int, short) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeShort(short[], int, int) - Static method in enum class net.jpountz.util.SafeUtils
- writeShort(short[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeShortLE(byte[], int, int) - Static method in enum class net.jpountz.util.SafeUtils
- writeShortLE(byte[], int, int) - Static method in enum class net.jpountz.util.UnsafeUtils
- writeShortLE(ByteBuffer, int, int) - Static method in enum class net.jpountz.util.ByteBufferUtils
X
- XXHash32 - Class in net.jpountz.xxhash
-
A 32-bits hash.
- XXHash32() - Constructor for class net.jpountz.xxhash.XXHash32
- XXHash64 - Class in net.jpountz.xxhash
-
A 64-bits hash.
- XXHash64() - Constructor for class net.jpountz.xxhash.XXHash64
- XXHashFactory - Class in net.jpountz.xxhash
-
Entry point to get
XXHash32andStreamingXXHash32instances.
All Classes and Interfaces|All Packages|Serialized Form
LZ4Factory.fastDecompressor()