Package antlr.collections
Interface Stack
-
- All Known Implementing Classes:
LList
public interface StackA simple stack definition; restrictive in that you cannot access arbitrary stack elements.- Author:
- Terence Parr MageLang Institute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intheight()Objectpop()voidpush(Object o)Objecttop()
-
-
-
Method Detail
-
height
int height()
-
pop
Object pop() throws NoSuchElementException
- Throws:
NoSuchElementException
-
push
void push(Object o)
-
top
Object top() throws NoSuchElementException
- Throws:
NoSuchElementException
-
-