Class Summary |
AbstractBooleanList |
Abstract base class for resizable lists holding boolean elements; abstract. |
AbstractByteList |
Abstract base class for resizable lists holding byte elements; abstract. |
AbstractCharList |
Abstract base class for resizable lists holding char elements; abstract. |
AbstractCollection |
Abstract base class for resizable collections holding objects or primitive data types such as int , float , etc. |
AbstractDoubleList |
Abstract base class for resizable lists holding double elements; abstract. |
AbstractFloatList |
Abstract base class for resizable lists holding float elements; abstract. |
AbstractIntList |
Abstract base class for resizable lists holding int elements; abstract. |
AbstractList |
Abstract base class for resizable lists holding objects or primitive data types such as int , float , etc. |
AbstractLongList |
Abstract base class for resizable lists holding long elements; abstract. |
AbstractShortList |
Abstract base class for resizable lists holding short elements; abstract. |
BooleanArrayList |
Resizable list holding boolean elements; implemented with arrays. |
ByteArrayList |
Resizable list holding byte elements; implemented with arrays. |
CharArrayList |
Resizable list holding char elements; implemented with arrays. |
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. |
DoubleArrayList |
Resizable list holding double elements; implemented with arrays. |
FloatArrayList |
Resizable list holding float elements; implemented with arrays. |
IntArrayList |
Resizable list holding int elements; implemented with arrays. |
LongArrayList |
Resizable list holding long elements; implemented with arrays. |
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.colt.bitvector.BitVector. |
ObjectArrayList |
Resizable list holding Object elements; implemented with arrays. |
ShortArrayList |
Resizable list holding short elements; implemented with arrays. |
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. |