Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class Stack extends Vector {
   // Default Constructor: public Stack()
   // Public Instance Methods
      public boolean empty();
      public synchronized Object peek();
      public synchronized Object pop();
      public Object push(Object item);
      public synchronized int search(Object o);
}