A.k.a. the stuff in java.util
.
That’s it.
😐
Incidentally, why is there no Stack
interface?
Iterable<T>
(in java.lang
)
Vector<E>
(prefer ArrayList<E>
)
Hashtable<K, V>
(prefer Map<K, V>
)
Stack<E>
(prefer Deque<E>
)
Enumeration<E>
(prefer Iterator<E>
)
Date
and Calendar
(prefer the java.time
package)