public class SimpleExportFilter extends java.lang.Object implements ExportFilter
| Modifier and Type | Field and Description |
|---|---|
static SimpleExportFilter |
INSTANCE |
| Constructor and Description |
|---|
SimpleExportFilter() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Column> |
filterColumns(java.util.List<Column> columns)
The columns that should be used to create the exported file.
|
java.lang.Object[] |
filterRow(java.lang.Object[] row)
The desired values for the row.
|
public static final SimpleExportFilter INSTANCE
public java.util.List<Column> filterColumns(java.util.List<Column> columns) throws java.io.IOException
ExportFilterfilterColumns in interface ExportFiltercolumns - the columns as determined by the export code, may be directly
modified and returnedjava.io.IOExceptionpublic java.lang.Object[] filterRow(java.lang.Object[] row)
throws java.io.IOException
ExportFilterfilterRow in interface ExportFilterrow - the row data as determined by the import code, may be directly
modifiednull, the row will be skippedjava.io.IOException