[all packages] [package net.sf.pizzacompiler.util] [class hierarchy] [index]

public class net.sf.pizzacompiler.util.Stack<A>

(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/util/Stack.pizza)
java.lang.Object
   |
   +----net.sf.pizzacompiler.util.Stack<A>

The pure class interface.
public class Stack<A>
  implements java.io.Serializable
A stack class. Uses net.sf.pizzacompiler.lang.List implementation.

See also:
net.sf.pizzacompiler.lang.List

Constuctor Index

O Stack()
Instantiates a new stack

Methods

O isEmpty()
Is the stack empty?
O pop()
Takes the topmost element off the stack and returns it.
O push(A)
Stores an element on the top of the stack.
O top()
Returns the topmost element.

Constructors

O Stack
public Stack();
Instantiates a new stack.

Methods

O isEmpty
public boolean isEmpty();
Is the stack empty?

Returns:
true if there are no elements on the stack

O push

public void push(A elem);
Stores an element on the top of the stack.

O pop

public A pop()
  throws IndexOutOfBoundsException;
Takes the topmost element off the stack and returns it.

Throws:
IndexOutOfBoundsException -if the stack is empty

O top

public A top()
  throws IndexOutOfBoundsException;
Returns the topmost element.

Throws:
IndexOutOfBoundsException -if the stack is empty


[all packages] [package net.sf.pizzacompiler.util] [class hierarchy] [index]
net.sf.pizzacompiler.util.Stack.html