com.sas.commands.export
Interface RelationalExportCommandV2Interface
- All Superinterfaces:
- BaseEntityValueInterface, RelationalExportCommandInterface
- All Known Implementing Classes:
- BaseRelationalExportCommand, ExportToCSVCommand, ExportToExcelXMLCommand, ExportToHTMLCommand, ExportToTabSeparatedCommand
public interface RelationalExportCommandV2Interface
- extends RelationalExportCommandInterface
Execute methods that allow the user to specifiy which columns to export and the headers and footers to export.
|
Method Summary |
void |
execute(int startRow,
int nRows,
boolean isRawData,
int[] columns,
java.lang.String[] headers,
java.lang.String[] footers)
Executes the command |
void |
execute(java.lang.Object out,
int startRow,
int nRows,
boolean isRawData,
int[] columns,
java.lang.String[] headers,
java.lang.String[] footers)
Executes the command |
execute
void execute(int startRow,
int nRows,
boolean isRawData,
int[] columns,
java.lang.String[] headers,
java.lang.String[] footers)
- Executes the command
- Parameters:
startRow - the index (in the model) of the first row of data to exportnRows - the number of rows of data to exportisRawData - true if non formatted data have to be exported, false if formatted data have to be exportedcolumns - the indexes (in the data model) of the columns to export, if null it will export all the columns in the data modelheaders - the headers to export above the data, each header on a separate rowfooters - the footers to export below the data, each footer on a separate row
execute
void execute(java.lang.Object out,
int startRow,
int nRows,
boolean isRawData,
int[] columns,
java.lang.String[] headers,
java.lang.String[] footers)
- Executes the command
- Parameters:
out - the output object where to write the exported data to (example a ServletResponse or a Writer)startRow - the index (in the model) of the first row of data to exportnRows - the number of rows of data to exportisRawData - true if non formatted data have to be exported, false if formatted data have to be exportedcolumns - the indexes (in the data model) of the columns to export, if null it will export all the columns in the data modelheaders - the headers to export above the data, each header on a separate rowfooters - the footers to export below the data, each footer on a separate row
Copyright © 2009 SAS Institute Inc. All Rights Reserved.