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