Skip to content

Commit a12573e

Browse files
committed
Add headings for different topics
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522825 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7ab4840 commit a12573e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
* Because CSV appears in many different dialects, the parser supports many formats by allowing the
4242
* specification of a {@link CSVFormat}.
4343
*
44+
* <h4>Creating instances</h4>
4445
* There are several static factory methods that can be used to create instances for various types of resources:
4546
* <p>
4647
* <ul>
@@ -53,6 +54,7 @@
5354
* Alternatively parsers can also be created by passing a {@link Reader} directly to the sole constructor.
5455
* </p>
5556
*
57+
* <h4>Parsing record wise</h4>
5658
* <p>
5759
* To parse a CSV input with tabs as separators, '"' (double-quote) as an optional value encapsulator, and comments
5860
* starting with '#', you write:
@@ -80,6 +82,8 @@
8082
* ...
8183
* }
8284
* </pre>
85+
*
86+
* <h4>Parsing completely into memory</h4>
8387
* <p>
8488
* You may also get a List of records:
8589
* </p>

0 commit comments

Comments
 (0)