Package one.nio.lz4
Class LZ4
- java.lang.Object
-
- one.nio.lz4.LZ4
-
public class LZ4 extends Object
-
-
Constructor Summary
Constructors Constructor Description LZ4()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static 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)
-
-
-
Method Detail
-
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
public static int compress(ByteBuffer src, ByteBuffer dst)
-
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
public static int decompress(ByteBuffer src, ByteBuffer dst)
-
-