SE450: Java Collections: Overview [3/18] Previous pageContentsNext page

Bags - a.k.a MultiSets. This is a Collection in Java

Sets - unorderd collection. This is a Set or SortedSet in Java

Lists - ordered collection - This is a List in Java

Map - unordered collection of key/value pairs. This is a Map or SortedMap in Java.

Iterator - allows traversal of a Collection

Previous pageContentsNext page