|
GNU Trove | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgnu.trove.TShortStack
public class TShortStack
A stack of short primitives, backed by a TShortArrayList.
Field Summary | |
---|---|
protected TShortArrayList |
_list
the list used to hold the stack values. |
static int |
DEFAULT_CAPACITY
|
Constructor Summary | |
---|---|
TShortStack()
Creates a new TShortStack instance with the default
capacity. |
|
TShortStack(int capacity)
Creates a new TShortStack instance with the
specified capacity. |
Method Summary | |
---|---|
void |
clear()
Clears the stack, reseting its capacity to the default. |
short |
peek()
Returns the value at the top of the stack. |
short |
pop()
Removes and returns the value at the top of the stack. |
void |
push(short 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. |
short[] |
toNativeArray()
Copies the contents of the stack into a native array. |
void |
toNativeArray(short[] dest)
Copies a slice of the list into a native array. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected TShortArrayList _list
public static final int DEFAULT_CAPACITY
Constructor Detail |
---|
public TShortStack()
TShortStack
instance with the default
capacity.
public TShortStack(int capacity)
TShortStack
instance with the
specified capacity.
capacity
- the initial depth of the stackMethod Detail |
---|
public void push(short val)
val
- an short
valuepublic short pop()
short
valuepublic short peek()
short
valuepublic int size()
public void clear()
public void reset()
public short[] toNativeArray()
short[]
valuepublic void toNativeArray(short[] dest)
dest
- the array to copy into.
|
GNU Trove | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |