public interface AQDataFactory
Modifier and Type | Method and Description |
---|---|
AQExcelSpreadsheet |
excelSpreadsheet(java.lang.String filename)
This factory method returns a new in-memory Excel spreadsheet.
|
AQDataSet |
newDataSet()
Factory method returns a new empty data set.
|
AQDataSet |
newDataSet(AQColumnStructure columnStructure)
Creates a new data set with the specified column structure information.
|
AQDataSet |
newDataSet(int rowCount,
int columnCount)
Creates a new data set with the specified dimensions.
|
AQDataSet |
newDataSet(int rowCount,
int columnCount,
java.lang.Object[] data)
Creates a new data set with the specified dimensions.
|
AQDataSet |
newDataSet(java.lang.String[] columnNames)
Factory method returns a new empty data set with the specified
column names.
|
AQDataSetSettings |
newDataSetSettings()
Factory method returns a new empty setting instance for formatting
an
AQDataSet or an AQPivotDataSet in a 2-dimension grid. |
AQExcelSpreadsheet |
newExcelSpreadsheet(java.lang.String filename)
This factory method returns a new in-memory Excel spreadsheet.
|
AQPivotDataSet |
newPivotDataSet()
Factory method returns a new empty pivot data set.
|
AQDataSet newDataSet()
AQDataSet newDataSet(java.lang.String[] columnNames)
columnNames
- Array of column names.AQDataSet newDataSet(int rowCount, int columnCount)
rowCount
- Number of rows in the data set.columnCount
- Number of columns in the data set.AQDataSet newDataSet(int rowCount, int columnCount, java.lang.Object[] data)
rowCount
- Number of rows in the data set.columnCount
- Number of columns in the data set.data
- An array of values to populate the data set.AQDataSet newDataSet(AQColumnStructure columnStructure)
columnStructure
- the column structureAQPivotDataSet newPivotDataSet()
AQDataSetSettings newDataSetSettings()
AQDataSet
or an AQPivotDataSet
in a 2-dimension grid.AQExcelSpreadsheet excelSpreadsheet(java.lang.String filename)
filename
- The filenameAQExcelSpreadsheet newExcelSpreadsheet(java.lang.String filename)
filename
- The filename
Copyright © 2017 AquaFold, Inc. All Rights Reserved. Use is subject to license terms.