Uses of Class
org.jooq.CSVFormat
-
Packages that use CSVFormat Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of CSVFormat in org.jooq
Methods in org.jooq that return CSVFormat Modifier and Type Method 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 totrue
.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 fornull
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 inquote()
.Methods in org.jooq with parameters of type CSVFormat Modifier and Type Method Description void
Formattable. formatCSV(OutputStream stream, CSVFormat format)
LikeFormattable.formatCSV(CSVFormat)
, but the data is output onto anOutputStream
.void
Formattable. formatCSV(Writer writer, CSVFormat format)
LikeFormattable.formatCSV(CSVFormat)
, but the data is output onto aWriter
.String
Formattable. formatCSV(CSVFormat format)
Get a simple formatted representation of this result as CSV. -
Uses of CSVFormat in org.jooq.impl
Methods in org.jooq.impl with parameters of type CSVFormat Modifier and Type Method Description void
ArrayRecordImpl. formatCSV(Writer writer, CSVFormat format)
-