public class TByteStack extends Object
| Modifier and Type | Field and Description |
|---|---|
protected TByteArrayList |
_list
the list used to hold the stack values.
|
static int |
DEFAULT_CAPACITY
|
| Constructor and 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 and 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 stack
public void push(byte val)
val - an
byte value
public byte pop()
byte value
public byte peek()
byte value
public int size()
public void clear()
public void reset()
public byte[] toNativeArray()
byte[] value
public void toNativeArray(byte[] dest)
dest - the array to copy into.