Modifier and Type | Method and Description |
---|---|
CsvWriter |
CsvWriter.flush()
Flushes all internal buffers to the underlying writer.
|
CsvWriter |
CsvWriter.flushUnderlyingWriter()
Calls flush on the underlying stringWriter.
|
CsvWriter |
CsvWriter.write()
Writes an empty string (followed by a column-separator).
|
CsvWriter |
CsvWriter.write(@Nullable List<String> csvData)
Writes a row to the CSV not ending with a rowSeparator.
|
CsvWriter |
CsvWriter.write(@Nullable String csvData)
Writes a field to the CSV and appends a columnSeparator in front of the new entry if necessary.
|
CsvWriter |
CsvWriter.writeAll(@Nullable List<List<String>> csvData)
Writes all rows to a CSV.
|
CsvWriter |
CsvWriter.writeLine()
Writes a row-separator, advancing the writer to a new row.
|
CsvWriter |
CsvWriter.writeLine(@Nullable List<String> csvData)
Writes a row to the CSV ending with a rowSeparator.
|
CsvWriter |
CsvWriter.writeLine(@Nullable String csvData)
Writes a field to the CSV and appends a columnSeparator in front of the new entry if necessary.
|
Copyright © 2016 Unterrainer Informatik OG. All rights reserved.