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