Class parsing.Int_Stack
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class parsing.Int_Stack

java.lang.Object
   |
   +----parsing.Int_Vector
           |
           +----parsing.Int_Stack

public class Int_Stack
extends Int_Vector

Constructor Index

 o Int_Stack()

Method Index

 o clear()
 o depth()
 o empty()
 o ith(int)
 o peek()
 o pop()
 o popn(int)
 o popto(int)
 o push(int)
 o search(int)
 o top()
 o tth(int)

Constructors

 o Int_Stack
  public Int_Stack()

Methods

 o push
  public int push(int n)
 o pop
  public int pop() throws EmptyStackException
 o peek
  public int peek() throws EmptyStackException
 o empty
  public boolean empty()
 o search
  public int search(int n)
 o clear
  public void clear()
 o popn
  public void popn(int n) throws EmptyStackException
 o popto
  public void popto(int n) throws EmptyStackException
 o ith
  public int ith(int i) throws EmptyStackException
 o depth
  public int depth()
 o tth
  public int tth(int i) throws EmptyStackException
 o top
  public int top() throws EmptyStackException

All Packages  Class Hierarchy  This Package  Previous  Next  Index