java.lang.Object
com.aspose.cells.CellsDataTableFactory
public class CellsDataTableFactory
| Method Summary | ||
|---|---|---|
ICellsDataTable | getInstance(double[] vals, boolean vertial) | |
| Creates ICellsDataTable from given sequence of double values. | ||
ICellsDataTable | getInstance(double[] vals, java.lang.String[] columnNames) | |
| Creates ICellsDataTable from given sequence of double values. | ||
ICellsDataTable | getInstance(double[][] vals) | |
| Creates ICellsDataTable from given 2D array. | ||
ICellsDataTable | getInstance(int[] vals, boolean vertial) | |
| Creates ICellsDataTable from given sequence of int values. | ||
ICellsDataTable | getInstance(int[] vals, java.lang.String[] columnNames) | |
| Creates ICellsDataTable from given sequence of int values. | ||
ICellsDataTable | getInstance(int[][] vals) | |
| Creates ICellsDataTable from given 2D array. | ||
ICellsDataTable | getInstance(java.lang.Object[] vals, boolean vertial) | |
| Creates ICellsDataTable from given sequence of objects. | ||
ICellsDataTable | getInstance(java.lang.Object[] vals, java.lang.String[] columnNames) | |
| Creates ICellsDataTable from given sequence of objects. | ||
ICellsDataTable | getInstance(java.lang.Object[][] vals) | |
| Creates ICellsDataTable from given 2D array. | ||
ICellsDataTable | getInstance(java.util.Collection collection) | |
| Creates ICellsDataTable from given collection. | ||
| Method Detail |
|---|
getInstance | |
public ICellsDataTable getInstance(int[] vals, java.lang.String[] columnNames) | |
vals - int values to build tablecolumnNames - 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)getInstance | |
public ICellsDataTable getInstance(int[] vals, boolean vertial) | |
vals - int values to build tablevertial - whether build table by the int values vertiacally(true) or horizontally(false)getInstance | |
public ICellsDataTable getInstance(double[] vals, java.lang.String[] columnNames) | |
vals - double values to build tablecolumnNames - 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)getInstance | |
public ICellsDataTable getInstance(double[] vals, boolean vertial) | |
vals - double values to build tablevertial - whether build table by the double values vertiacally(true) or horizontally(false)getInstance | |
public ICellsDataTable getInstance(java.lang.Object[] vals, java.lang.String[] columnNames) | |
vals - objects to build tablecolumnNames - 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)getInstance | |
public ICellsDataTable getInstance(java.lang.Object[] vals, boolean vertial) | |
vals - objects to build tablevertial - whether build table by the objects vertiacally(true) or horizontally(false)getInstance | |
public ICellsDataTable getInstance(int[][] vals) | |
vals - int values to build tablegetInstance | |
public ICellsDataTable getInstance(double[][] vals) | |
vals - double values to build tablegetInstance | |
public ICellsDataTable getInstance(java.lang.Object[][] vals) | |
vals - objects to build tablegetInstance | |
public ICellsDataTable getInstance(java.util.Collection collection) | |
collection - the collection to build table