public interface Stack
| Modifier and Type | Method and Description |
|---|---|
int |
height() |
Object |
pop() |
void |
push(Object o) |
Object |
top() |
int height()
Object pop() throws NoSuchElementException
NoSuchElementExceptionvoid push(Object o)
Object top() throws NoSuchElementException
NoSuchElementExceptionCopyright © 2017–2019 Eclipse Foundation. All rights reserved.