Home | Download | News | Wiki | About ANTLR | Feedback | Support | Bugs


Latest version is 2.7.7.
Download now! »

Download
» Home
» Download
» News
»Using ANTLR
» Documentation
» Wiki
» FAQ
» Articles
» Grammars
» File Sharing
» Code API
» Tech Support
» Bug Tracking
»About ANTLR
» What is ANTLR
» Why use ANTLR
» Showcase
» Testimonials
» Getting Started
» Software License
» ANTLR WebLogs
» ANTLR Workshops
»StringTemplate
»TML
»PCCTS
»Feedback
»Credits
»Contact


Support StringTemplate, ANTLR Project by making a donation! Terence often pays for things like the antlr.org server, conference travel, and this site design (that alone cost US$1000). Buy him a beer and pizza remotely ;)

Search



Stack


antlr.collections
Interface Stack

All Known Implementing Classes:
LList

public interface Stack

A simple stack definition; restrictive in that you cannot access arbitrary stack elements.


Method Summary
 int height()
           
 java.lang.Object pop()
           
 void push(java.lang.Object o)
           
 java.lang.Object top()
           
 

Method Detail

height

public int height()

pop

public java.lang.Object pop()
                     throws java.util.NoSuchElementException
Throws:
java.util.NoSuchElementException

push

public void push(java.lang.Object o)

top

public java.lang.Object top()
                     throws java.util.NoSuchElementException
Throws:
java.util.NoSuchElementException