public interface ExportWriter
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getContents()Get the String version of the values written so far. | 
| java.lang.String | getFileExtension()Get the extension of the file to be exported. | 
| java.lang.String | getMimeType()Get the mime type of the output | 
| void | setColumns(java.util.List<java.lang.String> columnsIn)Set the list of Columns to include in the export. | 
| void | write(java.util.List listIn)Write the List of values to the contents of this Writer. | 
void setColumns(java.util.List<java.lang.String> columnsIn)
columnsIn - List of columns you want defined in the output of the export.void write(java.util.List listIn)
listIn - that you want writen to the contentsjava.lang.String getContents()
java.lang.String getMimeType()
java.lang.String getFileExtension()