CellsDataTableFactory
CellsDataTableFactory class
Utility to build ICellsDataTable from custom objects for user’s convenience.
Methods
| Name | Description |
|---|---|
| getInstance(vals, columnNames) | Creates ICellsDataTable from given sequence of int values. |
| getInstance(vals, vertial) | Creates ICellsDataTable from given sequence of int values. |
| getInstance(vals, columnNames) | Creates ICellsDataTable from given sequence of double values. |
| getInstance(vals, vertial) | Creates ICellsDataTable from given sequence of double values. |
| getInstance(vals, columnNames) | Creates ICellsDataTable from given sequence of objects. |
| getInstance() | |
| getInstance(vals, vertial) | Creates ICellsDataTable from given sequence of objects. |
| getInstance(vals) | Creates ICellsDataTable from given 2D array. |
| getInstance(vals) | Creates ICellsDataTable from given 2D array. |
| getInstance(vals) | Creates ICellsDataTable from given 2D array. |
| getInstance(collection) | Creates ICellsDataTable from given collection. |
| getInstance() |
getInstance(vals, columnNames)
Creates ICellsDataTable from given sequence of int values.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Number | int values to build table |
| columnNames | Array of 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) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals, vertial)
Creates ICellsDataTable from given sequence of int values.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Number | int values to build table |
| vertial | boolean | whether build table by the int values vertiacally(true) or horizontally(false) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals, columnNames)
Creates ICellsDataTable from given sequence of double values.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Number | double values to build table |
| columnNames | Array of 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) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals, vertial)
Creates ICellsDataTable from given sequence of double values.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Number | double values to build table |
| vertial | boolean | whether build table by the double values vertiacally(true) or horizontally(false) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals, columnNames)
Creates ICellsDataTable from given sequence of objects.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Object | objects to build table |
| columnNames | Array of 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) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance()
getInstance(vals, vertial)
Creates ICellsDataTable from given sequence of objects.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Object | objects to build table |
| vertial | boolean | whether build table by the objects vertiacally(true) or horizontally(false) |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals)
Creates ICellsDataTable from given 2D array.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Array of int | int values to build table |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals)
Creates ICellsDataTable from given 2D array.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Array of double | double values to build table |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(vals)
Creates ICellsDataTable from given 2D array.
| Parameter | Type | Description |
|---|---|---|
| vals | Array of Array of Object | objects to build table |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable
getInstance(collection)
Creates ICellsDataTable from given collection.
| Parameter | Type | Description |
|---|---|---|
| collection | Collection | the collection to build table |
Returns: ICellsDataTable — ICellsDataTable Instance of ICellsDataTable