public interface CSVDataWriter
| Modifier and Type | Method and Description |
|---|---|
void |
writeColumnNames(List<Column> columns)
The method to output the column names using the delimiter using writer.
|
void |
writeRow(List<Column> columns,
Object[] row)
The method to export a row from sas7bdat file (stored as an object of the
SasFileReaderImpl class) using writer. |
void |
writeRowsArray(List<Column> columns,
Object[][] rows)
The method to export a parsed sas7bdat file (stored as an object of the
SasFileReaderImpl class) using writer. |
void writeRow(List<Column> columns, Object[] row) throws IOException
SasFileReaderImpl class) using writer.columns - the Column class variables list that stores columns description from the sas7bdat file.row - the Objects arrays that stores data from the sas7bdat file.IOException - appears if the output into writer is impossible.void writeRowsArray(List<Column> columns, Object[][] rows) throws IOException
SasFileReaderImpl class) using writer.columns - the Column class variables list that stores columns description from the sas7bdat file.rows - the Objects arrays array that stores data from the sas7bdat file.IOException - appears if the output into writer is impossible.void writeColumnNames(List<Column> columns) throws IOException
columns - the list of column names.IOException - appears if the output into writer is impossible.Copyright © 2019. All rights reserved.