Package one.nio.lz4
Class LZ4
java.lang.Object
one.nio.lz4.LZ4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic intcompress(byte[] src, byte[] dst) static intcompress(byte[] src, int srcOffset, byte[] dst, int dstOffset, int length) static intcompress(ByteBuffer src, ByteBuffer dst) static intcompressBound(int size) static intdecompress(byte[] src, byte[] dst) static intdecompress(byte[] src, int srcOffset, byte[] dst, int dstOffset, int length) static intdecompress(ByteBuffer src, ByteBuffer dst)
-
Constructor Details
-
LZ4
public LZ4()
-
-
Method Details
-
compressBound
public static int compressBound(int size) -
compress
public static int compress(byte[] src, byte[] dst) -
compress
public static int compress(byte[] src, int srcOffset, byte[] dst, int dstOffset, int length) -
compress
-
decompress
public static int decompress(byte[] src, byte[] dst) -
decompress
public static int decompress(byte[] src, int srcOffset, byte[] dst, int dstOffset, int length) -
decompress
-