Interface | Description |
---|---|
ComparatorInterface |
To be able to do sorting in Java 1.1 as defined in java.util.Arrays (which
is only available in Java 1.2 and higher), we offer a java.util.Comparator
clone under a different name: ComparatorInterface.
|
Class | Description |
---|---|
ArrayConverter |
Helper class with static methods to convert between byte arrays and primitive types.
|
ArrayRotation |
Provides static methods to rotate (in steps of 90 degrees), flip and mirror array elements.
|
ArrayScaling |
This class currently only scales up an image given as a one-dimensional array
of values.
|
Median |
Pick the median value from an array (or an interval of an array).
|
SeekableByteArrayOutputStream |
An extension of
OutputStream that writes data to an internal
byte array, resizing it when necessary. |
Sort |
Provides sorting of an Object array.
|
Statistics |
A number of static methods to compute statistical properties of an
array of double values.
|
SystemInfo |
Class to retrieve system information in a human-readable form.
|