You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/10/17 02:09:06 UTC

svn commit: r1399051 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Author: sebb
Date: Wed Oct 17 00:09:05 2012
New Revision: 1399051

URL: http://svn.apache.org/viewvc?rev=1399051&view=rev
Log:
Javadoc

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1399051&r1=1399050&r2=1399051&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Wed Oct 17 00:09:05 2012
@@ -99,6 +99,13 @@ public class CSVFormat implements Serial
      * <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