Uses of Class
cern.colt.list.AbstractCollection

Packages that use AbstractCollection
Package
Description
Resizable lists holding objects or primitive data types such as int, double, etc.
  • Uses of AbstractCollection in cern.colt.list

    Modifier and Type
    Class
    Description
    class 
    Abstract base class for resizable lists holding boolean elements; abstract.
    class 
    Abstract base class for resizable lists holding byte elements; abstract.
    class 
    Abstract base class for resizable lists holding char elements; abstract.
    class 
    Abstract base class for resizable lists holding double elements; abstract.
    class 
    Abstract base class for resizable lists holding float elements; abstract.
    class 
    Abstract base class for resizable lists holding int elements; abstract.
    class 
    Abstract base class for resizable lists holding objects or primitive data types such as int, float, etc.
    class 
    Abstract base class for resizable lists holding long elements; abstract.
    class 
    Abstract base class for resizable lists holding short elements; abstract.
    class 
    Resizable list holding boolean elements; implemented with arrays.
    class 
    Resizable list holding byte elements; implemented with arrays.
    class 
    Resizable list holding char 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 holding double elements; implemented with arrays.
    class 
    Resizable list holding float elements; implemented with arrays.
    class 
    Resizable list holding int elements; implemented with arrays.
    class 
    Resizable list holding long 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 holding Object elements; implemented with arrays.
    class 
    Resizable list holding short elements; implemented with arrays.
    class 
    Resizable list holding long elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list.