| Interface | Concrete Implementation | Notes |
| Set | HashSet | Hash Table implementation |
| Sorted Set | TreeSet | Requires a sorting order. |
| List | ArrayList | Array implementation. |
| List | LinkedList | Doubly linked list implementation. |
| List | Vector | Supports legacy methods from JDK 1.0. |
| Map | HashMap | Hash table implementation. |
| SortedMap | TreeMap | Requires a sorting order. |
| Map | Hashtable | Supports legacy methods from JDK 1.0. |