Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Cern.colt.list Classes and Interfaces - 27 results found.
NameDescriptionTypePackageFramework
AbstractBooleanListAbstract base class for resizable lists holding boolean elements; abstract.Classcern.colt.listColt
AbstractByteListAbstract base class for resizable lists holding byte elements; abstract.Classcern.colt.listColt
AbstractCharListAbstract base class for resizable lists holding char elements; abstract.Classcern.colt.listColt
AbstractCollectionAbstract base class for resizable collections holding objects or primitive data types such as int, float, etc.Classcern.colt.listColt
AbstractDoubleListAbstract base class for resizable lists holding double elements; abstract.Classcern.colt.listColt
AbstractFloatListAbstract base class for resizable lists holding float elements; abstract.Classcern.colt.listColt
AbstractIntListAbstract base class for resizable lists holding int elements; abstract.Classcern.colt.listColt
AbstractListAbstract base class for resizable lists holding objects or primitive data types such as int, float, etc.Classcern.colt.listColt
AbstractLongListAbstract base class for resizable lists holding long elements; abstract.Classcern.colt.listColt
AbstractShortListAbstract base class for resizable lists holding short elements; abstract.Classcern.colt.listColt
BooleanArrayListResizable list holding boolean elements; implemented with arrays.Classcern.colt.listColt
ByteArrayListResizable list holding byte elements; implemented with arrays.Classcern.colt.listColt
CharArrayListResizable list holding char elements; implemented with arrays.Classcern.colt.listColt
DistinctNumberListResizable 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.Classcern.colt.listColt
DoubleArrayListResizable list holding double elements; implemented with arrays.Classcern.colt.listColt
DoubleListAdapterAdapter that permits an AbstractDoubleList to be viewed and treated as a JDK 1.Classcern.colt.list.adapterColt
FloatArrayListResizable list holding float elements; implemented with arrays.Classcern.colt.listColt
FloatListAdapterAdapter that permits an AbstractFloatList to be viewed and treated as a JDK 1.Classcern.colt.list.adapterColt
IntArrayListResizable list holding int elements; implemented with arrays.Classcern.colt.listColt
IntListAdapterAdapter that permits an AbstractIntList to be viewed and treated as a JDK 1.Classcern.colt.list.adapterColt
LongArrayListResizable list holding long elements; implemented with arrays.Classcern.colt.listColt
LongListAdapterAdapter that permits an AbstractLongList to be viewed and treated as a JDK 1.Classcern.colt.list.adapterColt
MinMaxNumberListResizable 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.Classcern.colt.listColt
ObjectArrayListResizable list holding Object elements; implemented with arrays.Classcern.colt.listColt
ObjectListAdapterAdapter that permits an ObjectArrayList to be viewed and treated as a JDK 1.Classcern.colt.list.adapterColt
ShortArrayListResizable list holding short elements; implemented with arrays.Classcern.colt.listColt
SimpleLongArrayListResizable list holding long elements; implemented with arrays; not efficient; just to demonstrate which methods you must override to implement a fully functional list.Classcern.colt.listColt