| bak.pcj.list.ShortStack
All known Subclasses: bak.pcj.list.ShortArrayStack,
ShortStack | public interface ShortStack extends ShortList(Code) | | This interface represents stacks of short values.
See Also: java.util.Stack See Also: ShortDeque author: Søren Bak version: 1.1 2003/15/2 since: 1.0 |
Method Summary | |
short | peek() Returns the top element of this stack. | short | pop() Pops an element off this stack. | void | push(short v) Pushes a specified element onto this stack. |
push | void push(short v)(Code) | | Pushes a specified element onto this stack.
Parameters: v - the element to push onto this stack. |
|
|