public class TByteStack
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
protected TByteArrayList |
_list |
the list used to hold the stack values.
|
static int |
DEFAULT_CAPACITY |
Constructor | Description |
---|---|
TByteStack() |
Creates a new
TByteStack instance with the default
capacity. |
TByteStack(int capacity) |
Creates a new
TByteStack instance with the
specified capacity. |
Modifier and Type | Method | Description |
---|---|---|
void |
clear() |
Clears the stack, reseting its capacity to the default.
|
byte |
peek() |
Returns the value at the top of the stack.
|
byte |
pop() |
Removes and returns the value at the top of the stack.
|
void |
push(byte val) |
Pushes the value onto the top of the stack.
|
void |
reset() |
Clears the stack without releasing its internal capacity allocation.
|
int |
size() |
Returns the current depth of the stack.
|
byte[] |
toNativeArray() |
Copies the contents of the stack into a native array.
|
void |
toNativeArray(byte[] dest) |
Copies a slice of the list into a native array.
|
protected TByteArrayList _list
public static final int DEFAULT_CAPACITY
public TByteStack()
TByteStack
instance with the default
capacity.public TByteStack(int capacity)
TByteStack
instance with the
specified capacity.capacity
- the initial depth of the stackpublic void push(byte val)
val
- an byte
valuepublic byte pop()
byte
valuepublic byte peek()
byte
valuepublic int size()
public void clear()
public void reset()
public byte[] toNativeArray()
byte[]
valuepublic void toNativeArray(byte[] dest)
dest
- the array to copy into.GNU Trove is copyright ? 2001-2009 Eric D. Friedman. All Rights Reserved.