| Modifier and Type | Field and Description |
|---|---|
private QuoteMode |
CSVFormat.quoteMode |
| Modifier and Type | Method and Description |
|---|---|
QuoteMode |
CSVFormat.getQuoteMode()
Returns the quote policy output fields.
|
static QuoteMode |
QuoteMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuoteMode[] |
QuoteMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
CSVFormat |
CSVFormat.withQuoteMode(QuoteMode quoteModePolicy)
Returns a new
CSVFormat with the output quote policy of the format set to the specified value. |
| Constructor and Description |
|---|
CSVFormat(char delimiter,
java.lang.Character quoteChar,
QuoteMode quoteMode,
java.lang.Character commentStart,
java.lang.Character escape,
boolean ignoreSurroundingSpaces,
boolean ignoreEmptyLines,
java.lang.String recordSeparator,
java.lang.String nullString,
java.lang.Object[] headerComments,
java.lang.String[] header,
boolean skipHeaderRecord,
boolean allowMissingColumnNames,
boolean ignoreHeaderCase,
boolean trim,
boolean trailingDelimiter)
Creates a customized CSV format.
|