See: Description
| Interface | Description |
|---|---|
| ArrayAdapter<T,A> |
Adapter for array-like things.
|
| NumberArrayAdapter<N extends java.lang.Number,A> |
Adapter for arrays of numbers, to avoid boxing.
|
| Class | Description |
|---|---|
| ArrayLikeUtil |
Utility class that allows plug-in use of various "array-like" types such as
lists in APIs that can take any kind of array to safe the cost of
reorganizing the objects into a real array.
|
| DoubleArray |
Array of double values (primitive, avoiding the boxing overhead of ArrayList
|
| DoubleArrayAdapter |
Use a
double[] in the ArrayAdapter API. |
| ExtendedArray<T> |
Class to extend an array with a single element virtually.
|
| FeatureVectorAdapter<F> |
Adapter to use a feature vector as an array of features.
|
| FloatArrayAdapter |
Use a
float[] in the ArrayAdapter API. |
| IntegerArray |
Array of int values (primitive, avoiding the boxing overhead of ArrayList
|
| ListArrayAdapter<T> |
Static adapter class to use a
List in an array API. |
| NumberListArrayAdapter<T extends java.lang.Number> |
Static adapter class to use a
List in an array of number
API. |
| NumberVectorAdapter |
Adapter to use a feature vector as an array of features.
|
| SingleSubsetArrayAdapter<T,A> |
Single-item subset adapter
|
| SubsetArrayAdapter<T,A> |
Subset array adapter (allows reordering and projection).
|
| SubsetNumberArrayAdapter<T extends java.lang.Number,A> |
Subset array adapter (allows reordering and projection)
|
Copyright © 2019 ELKI Development Team. License information.