Stack.EmptyStackException
Constructor and Description |
---|
MysteryStackImplementation()
Constructs an empty stack.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all items from the stack.
|
boolean |
isEmpty()
Returns true if the stack is empty.
|
T |
peek()
Returns the item on top of the stack, without removing it.
|
T |
pop()
Removes the item from the top of this stack, and returns it.
|
void |
push(T item)
Adds an item to the top of this stack.
|
public MysteryStackImplementation()
public void push(T item)
Stack
public T pop()
Stack
public T peek()
Stack
public boolean isEmpty()
Stack