|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jagatoo.util.nio.BufferUtils
public final class BufferUtils
Some often-used Buffer code for creating native buffers of the appropriate size.
| Constructor Summary | |
|---|---|
BufferUtils()
|
|
| Method Summary | |
|---|---|
static java.nio.ByteBuffer |
createByteBuffer(byte... values)
Constructs a direct native-ordered bytebuffer with the specified size. |
static java.nio.ByteBuffer |
createByteBuffer(int size)
Constructs a direct native-ordered bytebuffer with the specified size. |
static java.nio.CharBuffer |
createCharBuffer(char... values)
Constructs a direct native-order charbuffer with the specified number of elements. |
static java.nio.CharBuffer |
createCharBuffer(int size)
Constructs a direct native-order charbuffer with the specified number of elements. |
static java.nio.DoubleBuffer |
createDoubleBuffer(double... values)
Constructs a direct native-order doublebuffer with the specified number of elements. |
static java.nio.DoubleBuffer |
createDoubleBuffer(int size)
Constructs a direct native-order doublebuffer with the specified number of elements. |
static java.nio.FloatBuffer |
createFloatBuffer(float... values)
Constructs a direct native-order floatbuffer with the specified number of elements. |
static java.nio.FloatBuffer |
createFloatBuffer(int size)
Constructs a direct native-order floatbuffer with the specified number of elements. |
static java.nio.IntBuffer |
createIntBuffer(int... values)
Constructs a direct native-order intbuffer with the specified number of elements. |
static java.nio.IntBuffer |
createIntBuffer(int size)
Constructs a direct native-order intbuffer with the specified number of elements. |
static java.nio.LongBuffer |
createLongBuffer(int size)
Constructs a direct native-order longbuffer with the specified number of elements. |
static java.nio.LongBuffer |
createLongBuffer(long... values)
Constructs a direct native-order longbuffer with the specified number of elements. |
static java.nio.ShortBuffer |
createShortBuffer(int size)
Constructs a direct native-order shortbuffer with the specified number of elements. |
static java.nio.ShortBuffer |
createShortBuffer(short... values)
Constructs a direct native-order shortbuffer with the specified number of elements. |
static int |
getElementSizeExponent(java.nio.Buffer buf)
|
static int |
getOffset(java.nio.Buffer buffer)
A helper function, which is used to get the byte offset in an arbitrary buffer based on its position |
static boolean |
getUseDirectBuffers()
Gets whether to generally create direct buffers, if true, non-direct buffers otherwise. |
static void |
setUseDirectBuffers(boolean b)
Sets whether to generally create direct buffers, if true, non-direct buffers otherwise. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BufferUtils()
| Method Detail |
|---|
public static void setUseDirectBuffers(boolean b)
b - public static final boolean getUseDirectBuffers()
public static java.nio.ByteBuffer createByteBuffer(int size)
size - The size, in bytes
public static java.nio.ByteBuffer createByteBuffer(byte... values)
values - the values
public static java.nio.ShortBuffer createShortBuffer(int size)
size - The size, in shorts
public static java.nio.ShortBuffer createShortBuffer(short... values)
values - the values
public static java.nio.CharBuffer createCharBuffer(int size)
size - The size, in chars
public static java.nio.CharBuffer createCharBuffer(char... values)
values - the values
public static java.nio.IntBuffer createIntBuffer(int size)
size - The size, in ints
public static java.nio.IntBuffer createIntBuffer(int... values)
values - the values
public static java.nio.LongBuffer createLongBuffer(int size)
size - The size, in longs
public static java.nio.LongBuffer createLongBuffer(long... values)
values - the values
public static java.nio.FloatBuffer createFloatBuffer(int size)
size - The size, in floats
public static java.nio.FloatBuffer createFloatBuffer(float... values)
values - the values
public static java.nio.DoubleBuffer createDoubleBuffer(int size)
size - The size, in floats
public static java.nio.DoubleBuffer createDoubleBuffer(double... values)
values - the values
public static int getElementSizeExponent(java.nio.Buffer buf)
public static int getOffset(java.nio.Buffer buffer)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||