Method Summary |
|
void | addFirst(byte v) Adds an element to the beginning of this deque. |
void | addLast(byte v) Adds an element to the end of this deque. |
byte | getFirst() Returns the first element of this deque. |
byte | getLast() Returns the last element of this deque. |
byte | removeFirst() Removes the first element of this deque. |
byte | removeLast() Removes the last element of this deque. |