Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
CSVFormat |
CSVFormat.delimiter(char newDelimiter)
The delimiter to be used between CSV cells, defaulting to
"," . |
CSVFormat |
CSVFormat.delimiter(String newDelimiter)
The delimiter to be used between CSV cells, defaulting to
"," . |
CSVFormat |
CSVFormat.emptyString(String newEmptyString)
The string to be used for
"" values, defaulting to the
empty string. |
CSVFormat |
CSVFormat.header(boolean newHeader)
Whether to emit a header row with column names, defaulting to
true . |
CSVFormat |
CSVFormat.newline(String newNewline)
The string to be used to separate rows, defaulting to
\n . |
CSVFormat |
CSVFormat.nullString(String newNullString)
The string to be used for
null values, defaulting to the
empty string. |
CSVFormat |
CSVFormat.quote(CSVFormat.Quote newQuote)
When to quote CSV content.
|
CSVFormat |
CSVFormat.quoteString(String newQuoteString)
The string used to quote values according to the rules specified in
quote() . |
Modifier and Type | Method and Description |
---|---|
String |
Result.formatCSV(CSVFormat format)
Get a simple formatted representation of this result as CSV.
|
void |
Result.formatCSV(OutputStream stream,
CSVFormat format)
Like
Result.formatCSV(CSVFormat) , but the data is output onto an OutputStream . |
void |
Result.formatCSV(Writer writer,
CSVFormat format)
Like
Result.formatCSV(CSVFormat) , but the data is output onto a Writer . |
Copyright © 2017. All Rights Reserved.