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:
parent
f4b9d6dcd1
commit
530d8d1248
|
@ -33,9 +33,14 @@ import java.util.Arrays;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The format specification of a CSV file.
|
* The format specification of a CSV file.
|
||||||
*
|
* <p>
|
||||||
* This class is immutable.
|
* 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("Col1", "Col2", "Col3").build();</pre>
|
||||||
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class CSVFormat implements Serializable {
|
public class CSVFormat implements Serializable {
|
||||||
|
|
Loading…
Reference in New Issue