Package | Description |
---|---|
cern.colt.list |
Resizable lists holding objects or primitive data types such as int,
double, etc.
|
cern.colt.list.tboolean |
Resizable list holding elements of boolean data type.
|
cern.colt.list.tbyte |
Resizable list holding elements of byte data type.
|
cern.colt.list.tchar |
Resizable list holding elements of char data type.
|
cern.colt.list.tdouble |
Resizable list holding elements of double data type.
|
cern.colt.list.tfloat |
Resizable list holding elements of float data type.
|
cern.colt.list.tint |
Resizable list holding elements of int data type.
|
cern.colt.list.tlong |
Resizable list holding elements of long data type.
|
cern.colt.list.tobject |
Resizable list holding elements of Object data type.
|
cern.colt.list.tshort |
Resizable list holding elements of short data type.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractList
Abstract base class for resizable lists holding objects or primitive data
types such as
int , float , etc. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBooleanList
Abstract base class for resizable lists holding
boolean
elements; abstract. |
class |
BooleanArrayList
Resizable list holding
boolean elements; implemented with
arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractByteList
Abstract base class for resizable lists holding
byte elements;
abstract. |
class |
ByteArrayList
Resizable list holding
byte elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCharList
Abstract base class for resizable lists holding
char elements;
abstract. |
class |
CharArrayList
Resizable list holding
char elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDoubleList
Abstract base class for resizable lists holding
double elements;
abstract. |
class |
DoubleArrayList
Resizable list holding
double elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFloatList
Abstract base class for resizable lists holding
float elements;
abstract. |
class |
FloatArrayList
Resizable list holding
float elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractIntList
Abstract base class for resizable lists holding
int elements;
abstract. |
class |
IntArrayList
Resizable list holding
int elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractLongList
Abstract base class for resizable lists holding
long elements;
abstract. |
class |
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 |
LongArrayList
Resizable list holding
long elements; implemented with arrays. |
class |
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.
|
class |
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. |
Modifier and Type | Class and Description |
---|---|
class |
ObjectArrayList
Resizable list holding
Object elements; implemented with arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractShortList
Abstract base class for resizable lists holding
short elements;
abstract. |
class |
ShortArrayList
Resizable list holding
short elements; implemented with arrays. |
Jump to the Parallel Colt Homepage