Method Summary | ||
---|---|---|
method | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of double values.
|
||
method | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of double values.
|
||
method | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
method | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of int values.
|
||
method | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of int values.
|
||
method | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
method | getInstance(vals, vertial) | |
Creates ICellsDataTable from given sequence of objects.
|
||
method | getInstance(vals, columnNames) | |
Creates ICellsDataTable from given sequence of objects.
|
||
method | getInstance(vals) | |
Creates ICellsDataTable from given 2D array.
|
||
method | getInstance(collection) | |
Creates ICellsDataTable from given collection.
|
ICellsDataTable 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)ICellsDataTable getInstance(vals, vertial)
vals: Number Array
- int values to build tablevertial: boolean
- whether build table by the int values vertiacally(true) or horizontally(false)ICellsDataTable 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)ICellsDataTable getInstance(vals, vertial)
vals: Number Array
- double values to build tablevertial: boolean
- whether build table by the double values vertiacally(true) or horizontally(false)ICellsDataTable 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)ICellsDataTable getInstance(vals, vertial)
vals: Object[]
- objects to build tablevertial: boolean
- whether build table by the objects vertiacally(true) or horizontally(false)ICellsDataTable getInstance(vals)
vals: int[][]
- int values to build tableICellsDataTable getInstance(vals)
vals: double[][]
- double values to build tableICellsDataTable getInstance(vals)
vals: Object[][]
- objects to build tableICellsDataTable getInstance(collection)
collection: Collection
- the collection to build table