CS2001 - JL > 03 - Collections > Flashcards
What does ADT stand for?
Abstract Data Type
What operations are there in the Collections interface?
void add(Object obj); void remove(Object obj); void removeAll(Object obj); boolean contains(Object obj); int size(); Object elementAt(int index);