public static class XfaForm.Stack2
extends java.util.ArrayList
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
Stack2() |
| Modifier and Type | Method and Description |
|---|---|
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 item)
Pushes an item onto the top of this stack.
|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeprivate static final long serialVersionUID
public java.lang.Object peek()
public java.lang.Object pop()
public java.lang.Object push(java.lang.Object item)
item - the item to be pushed onto this stackitem argumentpublic boolean empty()
true if and only if this stack contains no items; false otherwise