git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1399051 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-10-17 00:09:05 +00:00
parent 7e67e14bb3
commit d266471b4c
1 changed files with 7 additions and 0 deletions

View File

@ -99,6 +99,13 @@ public class CSVFormat implements Serializable {
* <pre>
* CSVFormat fmt = CSVFormat.EXCEL.withDelimiter(';');
* </pre>
* Settings are:
* <ul>
* <li>withDelimiter(',')</li>
* <li>withQuoteChar('"')</li>
* <li>withLineSeparator(CRLF)</li>
* </ul>
* Note: this is currently the same as RFC4180
*/
public static final CSVFormat EXCEL =
PRISTINE