|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
com.taggercat.el.ELStack
public class ELStack
This is the Stack for the EL Parser.
| Constructor Summary | |
|---|---|
ELStack()
Creates an empty ELStack. |
|
| Method Summary | |
|---|---|
boolean |
empty()
Tests if this stack is empty. |
java.lang.Object |
peek()
Looks at the object at the top of this stack without removing it from the stack. |
java.lang.Object |
pop()
Removes the object at the top of this stack and returns that object as the value of this function. |
java.lang.Object |
push(java.lang.Object pushed)
Pushes an item onto the top of this stack. |
| Methods inherited from class java.util.ArrayList |
|---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, set, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
public ELStack()
| Method Detail |
|---|
public boolean empty()
true if and only if this stack contains no items;
false otherwisepublic java.lang.Object push(java.lang.Object pushed)
addElement(item)
pushed - the item to be pushed onto the stack
item argument.Vector.addElement(E)public java.lang.Object pop()
java.util.EmptyStackException - if this stack is empty.public java.lang.Object peek()
java.util.EmptyStackException - if this stack is empty.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||