Uses of Class
org.jooq.CSVFormat
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of CSVFormat in org.jooq
Modifier and TypeMethodDescriptionCSVFormat.delimiter(char newDelimiter)
The delimiter to be used between CSV cells, defaulting to","
.The delimiter to be used between CSV cells, defaulting to","
.CSVFormat.emptyString(String newEmptyString)
The string to be used for""
values, defaulting to the empty string.CSVFormat.header(boolean newHeader)
Whether to emit a header row with column names, defaulting totrue
.The string to be used to separate rows, defaulting to\n
.CSVFormat.nullString(String newNullString)
The string to be used fornull
values, defaulting to the empty string.CSVFormat.quote(CSVFormat.Quote newQuote)
When to quote CSV content.CSVFormat.quoteString(String newQuoteString)
The string used to quote values according to the rules specified inquote()
.Modifier and TypeMethodDescriptionvoid
Formattable.formatCSV(OutputStream stream, CSVFormat format)
LikeFormattable.formatCSV(CSVFormat)
, but the data is output onto anOutputStream
.void
LikeFormattable.formatCSV(CSVFormat)
, but the data is output onto aWriter
.@NotNull String
Get a simple formatted representation of this result as CSV. -
Uses of CSVFormat in org.jooq.impl