Interface Stack<T>
-
- All Known Implementing Classes:
DoublyLinkedList
public interface Stack<T>
- Author:
- Rohan Padhye
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
boolean
isEmpty()
T
peek()
T
pop()
void
push(T item)
-