public interface IDataSetResult
Modifier and Type | Method and Description |
---|---|
void |
addRow(java.lang.Object... rowValues)
Adds a new row to the report with the given values for each column.
|
void |
setColumnValues(java.lang.String columnName,
java.util.List<java.lang.Object> values)
Sets a list of values for one column.
|
void |
setTotalResultCount(long totalResultCount)
Sets the total available count of rows of this report.
|
void setColumnValues(java.lang.String columnName, java.util.List<java.lang.Object> values)
columnName
- the name of the column for which the values will be set.values
- the list of values of the column with the given name.void addRow(java.lang.Object... rowValues)
rowValues
- the values of all columns for the row to add.void setTotalResultCount(long totalResultCount)
totalResultCount
- the total available count of rows of this report.