Package | Description |
---|---|
oracle.sql |
A package of classes that represent java SQL types and Oracle specific
SQL types.
|
Modifier and Type | Method and Description |
---|---|
static VECTOR.SparseDoubleArray |
VECTOR.SparseDoubleArray.fromDenseArray(double[] denseArray)
Creates a SparseDoubleArray that stores only the non-zero values of a
double array.
|
static VECTOR.SparseDoubleArray |
VECTOR.SparseDoubleArray.fromDenseArray(double[] denseArray)
Creates a SparseDoubleArray that stores only the non-zero values of a
double array.
|
static VECTOR.SparseDoubleArray |
VECTOR.SparseDoubleArray.of(int length,
int[] indices,
double[] doubleValues)
Creates a SparseDoubleArray of the given length, indices, and values.
|
static VECTOR.SparseDoubleArray |
VECTOR.SparseDoubleArray.of(int length,
int[] indices,
double[] doubleValues)
Creates a SparseDoubleArray of the given length, indices, and values.
|
VECTOR.SparseDoubleArray |
VECTOR.toSparseDoubleArray()
Converts this VECTOR into a SparseDoubleArray.
|
VECTOR.SparseDoubleArray |
VECTOR.toSparseDoubleArray()
Converts this VECTOR into a SparseDoubleArray.
|
VECTOR.SparseDoubleArray |
VECTOR.toSparseDoubleArray(byte[] data)
Converts Oracle's internal encoding of a VECTOR into a SparseDoubleArray.
|
VECTOR.SparseDoubleArray |
VECTOR.toSparseDoubleArray(byte[] data)
Converts Oracle's internal encoding of a VECTOR into a SparseDoubleArray.
|