|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.AbstractCollection | +--java.util.AbstractList | +--java.util.Vector | +--java.util.Stack
Untamed:
Field Summary | |
private static long |
serialVersionUID
use serialVersionUID from JDK 1.0.2 for interoperability |
Fields inherited from class java.util.Vector |
capacityIncrement, elementCount, elementData |
Fields inherited from class java.util.AbstractList |
modCount |
Constructor Summary | |
Stack()
Enabled: Creates an empty Stack. |
Method Summary | |
boolean |
empty()
Enabled: Tests if this stack is empty. |
Object |
peek()
Enabled: Looks at the object at the top of this stack without removing it from the stack. |
Object |
pop()
Enabled: Removes the object at the top of this stack and returns that object as the value of this function. |
Object |
push(Object item)
Enabled: Pushes an item onto the top of this stack. |
int |
search(Object o)
Enabled: Returns the 1-based position where an object is on this stack. |
Methods inherited from class java.util.Vector |
__printOn, add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, iterate, lastElement, lastIndexOf, lastIndexOf, put, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize |
Methods inherited from class java.util.AbstractList |
iterator, listIterator, listIterator |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
iterator, listIterator, listIterator |
Field Detail |
private static final long serialVersionUID
Constructor Detail |
public Stack()
Method Detail |
public Object push(Object item)
addElement(item)
item
- the item to be pushed onto this stack.
item
argument.java.util.Vector#addElement
public Object pop()
public Object peek()
public boolean empty()
true
if and only if this stack contains
no items; false
otherwise.public int search(Object o)
o
- the desired object.
-1
indicates that the object is not on the stack.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |