static CsvOutput |
CsvOutput.safe(Appendable underlying) |
Creates an instance, using the system default line separator and using a comma separator.
|
static CsvOutput |
CsvOutput.safe(Appendable underlying,
String newLine) |
Creates an instance, allowing the new line character to be controlled and using a comma separator.
|
static CsvOutput |
CsvOutput.safe(Appendable underlying,
String newLine,
String separator) |
Creates an instance, allowing the new line character to be controlled, specifying the separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying) |
Creates an instance, using the system default line separator and using a comma separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying,
String newLine) |
Creates an instance, allowing the new line character to be controlled and using a comma separator.
|
static CsvOutput |
CsvOutput.standard(Appendable underlying,
String newLine,
String separator) |
Creates an instance, allowing the new line character to be controlled, specifying the separator.
|
CsvOutput |
CsvOutput.writeCell(String cell) |
Writes a single cell to the current line, only quoting if needed.
|
CsvOutput |
CsvOutput.writeCell(String cell,
boolean alwaysQuote) |
Writes a single cell to the current line.
|
CsvOutput |
CsvOutput.writeNewLine() |
Writes a new line character.
|