Package gnu.trove
Class TShortStack
- java.lang.Object
-
- gnu.trove.TShortStack
-
public class TShortStack extends java.lang.Object
A stack of short primitives, backed by a TShortArrayList.- Version:
- $Id: PStack.template,v 1.2 2007/02/28 23:03:57 robeden Exp $
- Author:
- Eric D. Friedman, Rob Eden
-
-
Field Summary
Fields Modifier and Type Field Description protected TShortArrayList
_list
the list used to hold the stack values.static int
DEFAULT_CAPACITY
-
Constructor Summary
Constructors Constructor Description TShortStack()
Creates a newTShortStack
instance with the default capacity.TShortStack(int capacity)
Creates a newTShortStack
instance with the specified capacity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
Field Detail
-
_list
protected TShortArrayList _list
the list used to hold the stack values.
-
DEFAULT_CAPACITY
public static final int DEFAULT_CAPACITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
push
public void push(short val)
Pushes the value onto the top of the stack.- Parameters:
val
- anshort
value
-
pop
public short pop()
Removes and returns the value at the top of the stack.- Returns:
- an
short
value
-
peek
public short peek()
Returns the value at the top of the stack.- Returns:
- an
short
value
-
size
public int size()
Returns the current depth of the stack.
-
clear
public void clear()
Clears the stack, reseting its capacity to the default.
-
reset
public void reset()
Clears the stack without releasing its internal capacity allocation.
-
toNativeArray
public short[] toNativeArray()
Copies the contents of the stack into a native array. Note that this will NOT pop them out of the stack.- Returns:
- an
short[]
value
-
toNativeArray
public void toNativeArray(short[] dest)
Copies a slice of the list into a native array. Note that this will NOT pop them out of the stack.- Parameters:
dest
- the array to copy into.
-
-