D G I M P S T

S

size - Variable in class generics.Stack
The number of objects in this stack.
Stack<T> - Class in generics
This Stack class represents a last-in-first-out (LIFO) stack of objects.
Stack() - Constructor for class generics.Stack
Constructs a new Stack with capacity for 100 objects
Stack(int) - Constructor for class generics.Stack
Constructs a new Stack with capacity specified by user
StackADT<T> - Interface in generics
 
StackEmptyException - Exception in generics
 
StackEmptyException() - Constructor for exception generics.StackEmptyException
Constructs a new StackEmptyException with a default error message string.
StackEmptyException(String) - Constructor for exception generics.StackEmptyException
Constructs a new StackEmptyException with the parameter as the error message string.
StackFullException - Exception in generics
 
StackFullException() - Constructor for exception generics.StackFullException
Constructs a new StackFullException with a default error message string.
StackFullException(String) - Constructor for exception generics.StackFullException
Constructs a new StackFullException with the parameter as the error message string.

D G I M P S T