File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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>
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:
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>
You can’t perform that action at this time.
0 commit comments