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