Javadoc toBuilder().

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1460381 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-03-24 14:13:48 +00:00
parent f4b9d6dcd1
commit 530d8d1248
1 changed files with 7 additions and 2 deletions

View File

@ -33,9 +33,14 @@ import java.util.Arrays;
/**
* The format specification of a CSV file.
*
* <p>
* This class is immutable.
*
* </p>
* <p>
* You can extend a format through a builder. For example, to extend the Excel format with columns header, you write:
* </p>
* <pre>CSVFormat.EXCEL.toBuilder().withHeader(&quot;Col1&quot;, &quot;Col2&quot;, &quot;Col3&quot;).build();</pre>
*
* @version $Id$
*/
public class CSVFormat implements Serializable {