|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectedu.colorado.collections.ObjectLinkedStack
public class ObjectLinkedStack
A ObjectLinkedStack is a stack of references to objects.
Int.MAX_VALUE items, size is wrong.
ObjectStack,
BooleanLinkedStack,
ByteLinkedStack,
CharLinkedStack,
DoubleLinkedStack,
FloatLinkedStack,
IntLinkedStack,
LongLinkedStack,
ShortLinkedStack| Constructor Summary | |
|---|---|
ObjectLinkedStack()
Initialize an empty stack. |
|
| Method Summary | |
|---|---|
java.lang.Object |
clone()
Generate a copy of this stack. |
boolean |
isEmpty()
Determine whether this stack is empty. |
java.lang.Object |
peek()
Get the top item of this stack, without removing the item. |
java.lang.Object |
pop()
Get the top item, removing it from this stack. |
void |
push(java.lang.Object item)
Push a new item onto this stack. |
int |
size()
Accessor method to determine the number of items in this stack. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ObjectLinkedStack()
- - none
| Method Detail |
|---|
public java.lang.Object clone()
clone in class java.lang.Object- - none
ObjectLinkedStack before it can be used.
java.lang.OutOfMemoryError - Indicates insufficient memory for creating the clone.public boolean isEmpty()
- - none
true if this stack is empty;
false otherwise.public java.lang.Object peek()
- - none
java.util.EmptyStackException - Indicates that this stack is empty.public java.lang.Object pop()
- - none
java.util.EmptyStackException - Indicates that this stack is empty.public void push(java.lang.Object item)
item - the item to be pushed onto this stack
java.lang.OutOfMemoryError - Indicates insufficient memory for increasing the stack's capacity.public int size()
- - none
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||