Interface Stack<T>
-
- All Known Implementing Classes:
DequeStack
interface Stack<T>
- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isEmpty()
T
peek()
T
pop()
void
push(T t)
int
size()
-