public class ByteBuffer
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private byte[] |
buf
the bytes of the buffer
|
private static int |
DEFAULT_INITIAL_SIZE
the default initial buffer size
|
private int |
initialSize
the initial size of the buffer in number of bytes: also increment for allocations
|
private int |
pos
the position into the buffer
|
| Constructor and Description |
|---|
ByteBuffer() |
ByteBuffer(int initialSize) |
| Modifier and Type | Method and Description |
|---|---|
void |
append(byte b)
Appends a byte to this buffer.
|
void |
append(byte[] bytes)
Appends the bytes to this buffer.
|
void |
append(int val)
Appends an int to this buffer.
|
byte[] |
buffer()
Get's the bytes, the backing store for this buffer.
|
int |
capacity() |
void |
clear() |
byte[] |
copyOfUsedBytes()
Get's a copy of the bytes used.
|
byte |
get(int i) |
private void |
growBuffer() |
private void |
growBuffer(int size) |
int |
position() |
private static final int DEFAULT_INITIAL_SIZE
private final int initialSize
private int pos
private byte[] buf
public final void clear()
public final int position()
public final int capacity()
public final byte get(int i)
public final byte[] buffer()
public final byte[] copyOfUsedBytes()
public final void append(byte[] bytes)
public final void append(byte b)
public final void append(int val)
private void growBuffer(int size)
private void growBuffer()