Uses of Class
cern.colt.list.AbstractList
Packages that use AbstractList
Package
Description
Resizable lists holding objects or primitive data types such as int,
double, etc.
-
Uses of AbstractList in cern.colt.list
Subclasses of AbstractList in cern.colt.listModifier and TypeClassDescriptionclass
Abstract base class for resizable lists holdingboolean
elements; abstract.class
Abstract base class for resizable lists holdingbyte
elements; abstract.class
Abstract base class for resizable lists holdingchar
elements; abstract.class
Abstract base class for resizable lists holdingdouble
elements; abstract.class
Abstract base class for resizable lists holdingfloat
elements; abstract.class
Abstract base class for resizable lists holdingint
elements; abstract.class
Abstract base class for resizable lists holdinglong
elements; abstract.class
Abstract base class for resizable lists holdingshort
elements; abstract.class
Resizable list holdingboolean
elements; implemented with arrays.class
Resizable list holdingbyte
elements; implemented with arrays.class
Resizable list holdingchar
elements; implemented with arrays.class
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
Resizable list holdingdouble
elements; implemented with arrays.class
Resizable list holdingfloat
elements; implemented with arrays.class
Resizable list holdingint
elements; implemented with arrays.class
Resizable list holdinglong
elements; implemented with arrays.class
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.class
Resizable list holdingObject
elements; implemented with arrays.class
Resizable list holdingshort
elements; implemented with arrays.class
Resizable list holdinglong
elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list.