Class NioBufferFunctions
- java.lang.Object
-
- net.lax1dude.eaglercraft.v1_8.netty.NioBufferFunctions
-
public class NioBufferFunctions extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description NioBufferFunctions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
get(java.nio.ByteBuffer src, int index, byte[] dst)
static void
get(java.nio.ByteBuffer src, int index, byte[] dst, int dstOffset, int length)
static void
put(java.nio.ByteBuffer dst, int dstIndex, byte[] src, int srcOffset, int length)
static void
put(java.nio.ByteBuffer dst, int dstIndex, java.nio.ByteBuffer src, int srcOffset, int length)
static void
put(java.nio.ByteBuffer newBuffer, java.nio.ByteBuffer flip)
static void
put(IntBuffer intBuffer, int index, int[] data)
-
-
-
Method Detail
-
get
public static final void get(java.nio.ByteBuffer src, int index, byte[] dst, int dstOffset, int length)
-
put
public static final void put(java.nio.ByteBuffer dst, int dstIndex, java.nio.ByteBuffer src, int srcOffset, int length)
-
put
public static final void put(java.nio.ByteBuffer dst, int dstIndex, byte[] src, int srcOffset, int length)
-
get
public static final void get(java.nio.ByteBuffer src, int index, byte[] dst)
-
put
public static void put(java.nio.ByteBuffer newBuffer, java.nio.ByteBuffer flip)
-
put
public static void put(IntBuffer intBuffer, int index, int[] data)
-
-