| Package | Description |
|---|---|
| org.foxlabs.util |
| Modifier and Type | Method and Description |
|---|---|
ByteBuffer |
ByteBuffer.append(boolean value)
Appends the specified
boolean value to this buffer as a
1-byte value. |
ByteBuffer |
ByteBuffer.append(boolean[] array)
Appends the specified
boolean[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(boolean[] array,
int offset,
int count)
Appends the specified number of elements from the specified
boolean[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(byte value)
Appends the specified
byte value to this buffer. |
ByteBuffer |
ByteBuffer.append(byte[] array)
Appends the specified
byte[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(byte[] array,
int offset,
int count)
Appends the specified number of elements from the specified
byte[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(ByteBuffer buffer)
Appends all the data from the specified buffer to this buffer.
|
ByteBuffer |
ByteBuffer.append(char value)
Appends the specified
char value to this buffer as a
2-byte value, high byte first. |
ByteBuffer |
ByteBuffer.append(char[] array)
Appends the specified
char[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(char[] array,
int offset,
int count)
Appends the specified number of elements from the specified
char[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(double value)
Appends the specified
double value to this buffer as a
8-byte quantity, high byte first. |
ByteBuffer |
ByteBuffer.append(double[] array)
Appends the specified
double[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(double[] array,
int offset,
int count)
Appends the specified number of elements from the specified
double[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(float value)
Appends the specified
float value to this buffer as a
4-byte quantity, high byte first. |
ByteBuffer |
ByteBuffer.append(float[] array)
Appends the specified
float[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(float[] array,
int offset,
int count)
Appends the specified number of elements from the specified
float[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(int value)
Appends the specified
int value to this buffer as four
bytes, high byte first. |
ByteBuffer |
ByteBuffer.append(int[] array)
Appends the specified
int[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(int[] array,
int offset,
int count)
Appends the specified number of elements from the specified
int[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(long value)
Appends the specified
long value to this buffer as eight
bytes, high byte first. |
ByteBuffer |
ByteBuffer.append(long[] array)
Appends the specified
long[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(long[] array,
int offset,
int count)
Appends the specified number of elements from the specified
long[] array starting from the specified offset to this
buffer. |
ByteBuffer |
ByteBuffer.append(short value)
Appends the specified
short value to this buffer as two
bytes, high byte first. |
ByteBuffer |
ByteBuffer.append(short[] array)
Appends the specified
short[] array to this buffer. |
ByteBuffer |
ByteBuffer.append(short[] array,
int offset,
int count)
Appends the specified number of elements from the specified
short[] array starting from the specified offset to this
buffer. |
| Modifier and Type | Method and Description |
|---|---|
ByteBuffer |
ByteBuffer.append(ByteBuffer buffer)
Appends all the data from the specified buffer to this buffer.
|
Copyright © 2010-2012 FoxLabs. All Rights Reserved.