[all packages]
[package net.sf.pizzacompiler.contrib]
[class hierarchy]
[index]
public class net.sf.pizzacompiler.contrib.Stack<A>
(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/contrib/Stack.pizza)
java.lang.Object
|
+----net.sf.pizzacompiler.contrib.Stack<A>
The pure class interface.
public class Stack<A>
- A stack class. Uses net.sf.pizzacompiler.lang.List implementation.
- See also:
- net.sf.pizzacompiler.lang.List
- Stack()
- Instantiates an empty stack
- isEmpty()
- Is the stack empty?
- pop()
- Takes the topmost element off the stack and returns it.
- push(A)
- Stores element
elem
on the top of the stack.
- top()
- Returns the topmost element (whithout removing it).
Stack
public Stack();
- Instantiates an empty stack.
isEmpty
public boolean isEmpty();
- Is the stack empty?
- Returns:
- true if there are no elements on the stack
push
public void push(A elem);
- Stores element
elem
on the top of the stack.
pop
public A pop()
throws IndexOutOfBoundsException;
- Takes the topmost element off the stack and returns it.
- Throws:
- IndexOutOfBoundsException -if the stack is empty
-
top
public A top()
throws IndexOutOfBoundsException;
- Returns the topmost element (whithout removing it).
- Throws:
- IndexOutOfBoundsException -if the stack is empty
-
[all packages]
[package net.sf.pizzacompiler.contrib]
[class hierarchy]
[index]
net.sf.pizzacompiler.contrib.Stack.html