| Name | Description | Type | Package | Framework |
| AbstractBooleanList | Abstract base class for resizable lists holding boolean elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractByteList | Abstract base class for resizable lists holding byte elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractCharList | Abstract base class for resizable lists holding char elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractCollection | Abstract base class for resizable collections holding objects or primitive data types such as int, float, etc. | Class | cern.colt.list | Colt |
|
| AbstractDoubleList | Abstract base class for resizable lists holding double elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractFloatList | Abstract base class for resizable lists holding float elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractIntList | Abstract base class for resizable lists holding int elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractList | Abstract base class for resizable lists holding objects or primitive data types such as int, float, etc. | Class | cern.colt.list | Colt |
|
| AbstractLongList | Abstract base class for resizable lists holding long elements; abstract. | Class | cern.colt.list | Colt |
|
| AbstractShortList | Abstract base class for resizable lists holding short elements; abstract. | Class | cern.colt.list | Colt |
|
| BooleanArrayList | Resizable list holding boolean elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| ByteArrayList | Resizable list holding byte elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| CharArrayList | Resizable list holding char elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| DistinctNumberList | Resizable compressed list holding numbers; based on the fact that a number from a large list with few distinct values need not take more than log(distinctValues) bits; implemented with a MinMaxNumberList. | Class | cern.colt.list | Colt |
|
| DoubleArrayList | Resizable list holding double elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| DoubleListAdapter | Adapter that permits an AbstractDoubleList to be viewed and treated as a JDK 1. | Class | cern.colt.list.adapter | Colt |
|
| FloatArrayList | Resizable list holding float elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| FloatListAdapter | Adapter that permits an AbstractFloatList to be viewed and treated as a JDK 1. | Class | cern.colt.list.adapter | Colt |
|
| IntArrayList | Resizable list holding int elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| IntListAdapter | Adapter that permits an AbstractIntList to be viewed and treated as a JDK 1. | Class | cern.colt.list.adapter | Colt |
|
| LongArrayList | Resizable list holding long elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| LongListAdapter | Adapter that permits an AbstractLongList to be viewed and treated as a JDK 1. | Class | cern.colt.list.adapter | Colt |
|
| MinMaxNumberList | Resizable compressed list holding numbers; based on the fact that a value in a given interval need not take more than log(max-min+1) bits; implemented with a cern. | Class | cern.colt.list | Colt |
|
| ObjectArrayList | Resizable list holding Object elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| ObjectListAdapter | Adapter that permits an ObjectArrayList to be viewed and treated as a JDK 1. | Class | cern.colt.list.adapter | Colt |
|
| ShortArrayList | Resizable list holding short elements; implemented with arrays. | Class | cern.colt.list | Colt |
|
| SimpleLongArrayList | Resizable list holding long elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list. | Class | cern.colt.list | Colt |