JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Use
Tree
Index
Search
Help
edu.berkeley.cs.jqf.instrument.util
Stack
Contents
Hide sidebar
❮
❯
Show sidebar
Description
Method Summary
Method Details
push(T)
peek()
pop()
isEmpty()
clear()
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)
Method Details
push
void
push
(
T
item)
peek
T
peek
()
pop
T
pop
()
isEmpty
boolean
isEmpty
()
clear
void
clear
()