[CSV-208] Fix escape character for POSTGRESQL_TEXT and POSTGRESQL_CSV
formats. Fix Javadoc for org.apache.commons.csv.CSVFormat.POSTGRESQL_CSV.
This commit is contained in:
parent
13c539a50d
commit
3ddfb40c4f
|
@ -438,13 +438,13 @@ public final class CSVFormat implements Serializable {
|
|||
* Settings are:
|
||||
* </p>
|
||||
* <ul>
|
||||
* <li>withDelimiter(',')</li>
|
||||
* <li>withQuote('"')</li>
|
||||
* <li>withRecordSeparator('\n')</li>
|
||||
* <li>withIgnoreEmptyLines(false)</li>
|
||||
* <li>withEscape('\\')</li>
|
||||
* <li>withNullString("")</li>
|
||||
* <li>withQuoteMode(QuoteMode.ALL_NON_NULL)</li>
|
||||
* <li>{@code withDelimiter(',')}</li>
|
||||
* <li>{@code withEscape('"')}</li>
|
||||
* <li>{@code withIgnoreEmptyLines(false)}</li>
|
||||
* <li>{@code withQuote('"')}</li>
|
||||
* <li>{@code withRecordSeparator('\n')}</li>
|
||||
* <li>{@code withNullString("")}</li>
|
||||
* <li>{@code withQuoteMode(QuoteMode.ALL_NON_NULL)}</li>
|
||||
* </ul>
|
||||
*
|
||||
* @see Predefined#MySQL
|
||||
|
|
Loading…
Reference in New Issue