Uses of Class
com.github.luben.zstd.ZstdException
Packages that use ZstdException
-
Uses of ZstdException in com.github.luben.zstd
Methods in com.github.luben.zstd that throw ZstdExceptionModifier and TypeMethodDescriptionstatic byte[]
Zstd.compress
(byte[] src) Compresses the data in buffer 'src' using default compression levelstatic byte[]
Zstd.compress
(byte[] src, int level) Compresses the data in buffer 'src'static byte[]
Zstd.compress
(byte[] src, ZstdDictCompress dict) Compresses the data in buffer 'src'static ByteBuffer
Zstd.compress
(ByteBuffer srcBuff, byte[] dict, int level) Compresses buffer 'src' into buffer 'dst' with dictionary.static ByteBuffer
Zstd.compress
(ByteBuffer srcBuf, int level) Compresses the data in buffer 'srcBuf'static ByteBuffer
Zstd.compress
(ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static int
Zstd.compress
(ByteBuffer dstBuf, ByteBuffer srcBuf) Compresses the data in buffer 'srcBuf' using default compression levelstatic int
Zstd.compress
(ByteBuffer dstBuff, ByteBuffer srcBuff, byte[] dict, int level) Compresses buffer 'src' into buffer 'dst' with dictionary.static int
Zstd.compress
(ByteBuffer dstBuf, ByteBuffer srcBuf, int level) static int
Zstd.compress
(ByteBuffer dstBuf, ByteBuffer srcBuf, int level, boolean checksumFlag) Compresses the data in buffer 'srcBuf'static int
Zstd.compress
(ByteBuffer dstBuff, ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.ZstdCompressCtx.compress
(ByteBuffer srcBuf) Compresses the data in buffer 'srcBuf'static byte[]
Zstd.compressUsingDict
(byte[] src, byte[] dict, int level) Compresses buffer 'src' with dictionary.static byte[]
Zstd.decompress
(byte[] src, byte[] dict, int originalSize) static byte[]
Zstd.decompress
(byte[] src, int originalSize) Decompress datastatic byte[]
Zstd.decompress
(byte[] src, ZstdDictDecompress dict, int originalSize) Decompress datastatic ByteBuffer
Zstd.decompress
(ByteBuffer srcBuff, byte[] dict, int originalSize) Decompress datastatic ByteBuffer
Zstd.decompress
(ByteBuffer srcBuf, int originalSize) Decompress datastatic ByteBuffer
Zstd.decompress
(ByteBuffer srcBuff, ZstdDictDecompress dict, int originalSize) Decompress datastatic int
Zstd.decompress
(ByteBuffer dstBuf, ByteBuffer srcBuf) Decompress datastatic int
Zstd.decompress
(ByteBuffer dstBuff, ByteBuffer srcBuff, byte[] dict) Decompress datastatic int
Zstd.decompress
(ByteBuffer dstBuff, ByteBuffer srcBuff, ZstdDictDecompress dict) Decompress databyte[]
ZstdDecompressCtx.decompress
(byte[] src, int originalSize) ZstdDecompressCtx.decompress
(ByteBuffer srcBuf, int originalSize) int
ZstdDecompressCtx.decompress
(ByteBuffer dstBuf, ByteBuffer srcBuf) Decompresses buffer 'srcBuff' into buffer 'dstBuff' using this ZstdDecompressCtx.byte[]
ZstdDictTrainer.trainSamples()
byte[]
ZstdDictTrainer.trainSamples
(boolean legacy) ZstdDictTrainer.trainSamplesDirect()
ZstdDictTrainer.trainSamplesDirect
(boolean legacy)