Method Summary |
|
public ByteVector | append(byte b) Appends byte to the end of this buffer. |
public ByteVector | append(char c) Appends char (2 bytes) to the end of this buffer. |
public ByteVector | append(byte[] bytes) Appends bytes array to the end of this buffer. |
public ByteVector | append(ByteVector vector) Appends bytes from param's buffer to the end of this buffer. |
public byte | get(int index) Gets the byte value in this buffer at the specified index.
Parameters: index - - index of byte to be returned. |
public byte[] | getAll() Gets all the byte from this buffer. |
public int | length() Gets amount of bytes in buffer. |