[CSV-99] Revert Builder implementation in CSVFormat.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1508472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
75f39a81a7
commit
ee7335a2fc
|
@ -38,7 +38,7 @@ import java.util.Arrays;
|
||||||
* </p>
|
* </p>
|
||||||
* You can extend a format through a builder. For example, to extend the Excel format with columns header, you write:
|
* You can extend a format through a builder. For example, to extend the Excel format with columns header, you write:
|
||||||
* </p>
|
* </p>
|
||||||
* <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1", "Col2", "Col3").build();</pre>
|
* <pre>CSVFormat.EXCEL.toBuilder().withHeader("Col1", "Col2", "Col3");</pre>
|
||||||
* <p>
|
* <p>
|
||||||
* You can parse through a format. For example, to parse an Excel file with columns header, you write:
|
* You can parse through a format. For example, to parse an Excel file with columns header, you write:
|
||||||
* </p>
|
* </p>
|
||||||
|
@ -108,7 +108,7 @@ public class CSVFormat implements Serializable {
|
||||||
* For example for parsing or generating a CSV file on a French system the following format will be used:
|
* For example for parsing or generating a CSV file on a French system the following format will be used:
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';').build();
|
* CSVFormat fmt = CSVFormat.newBuilder(EXCEL).withDelimiter(';');
|
||||||
* </pre>
|
* </pre>
|
||||||
* Settings are:
|
* Settings are:
|
||||||
* <ul>
|
* <ul>
|
||||||
|
|
Loading…
Reference in New Issue