Method Summary | ||
---|---|---|
function | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of double values.
|
||
function | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of double values.
|
||
function | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
function | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of int values.
|
||
function | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of int values.
|
||
function | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
function | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of objects.
|
||
function | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of objects.
|
||
function | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
function | getInstance(collection) | |
Creates ICellsDataTable from given collection.
|
function getInstance(vals, columnNames)
vals: Number Array
- int values to build tablecolumnNames: String[]
- Column names of the table.
Its length can only be either 1(build table by the int values vertically)
or length of the int values(build table by the int values horizontally)function getInstance(vals, vertial)
vals: Number Array
- int values to build tablevertial: boolean
- whether build table by the int values vertiacally(true) or horizontally(false)function getInstance(vals, columnNames)
vals: Number Array
- double values to build tablecolumnNames: String[]
- Column names of the table.
Its length can only be either 1(build table by the double values vertically)
or length of the double values(build table by the double values horizontally)function getInstance(vals, vertial)
vals: Number Array
- double values to build tablevertial: boolean
- whether build table by the double values vertiacally(true) or horizontally(false)function getInstance(vals, columnNames)
vals: Object[]
- objects to build tablecolumnNames: String[]
- Column names of the table.
Its length can only be either 1(build table by the objects vertically)
or length of the objects(build table by the objects horizontally)function getInstance(vals, vertial)
vals: Object[]
- objects to build tablevertial: boolean
- whether build table by the objects vertiacally(true) or horizontally(false)function getInstance(vals)
vals: int[][]
- int values to build tablefunction getInstance(vals)
vals: double[][]
- double values to build tablefunction getInstance(vals)
vals: Object[][]
- objects to build tablefunction getInstance(collection)
collection: Collection
- the collection to build table