mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-18 07:56:33 +00:00
Use Javadoc @code
This commit is contained in:
parent
126094a9f7
commit
b240dec234
@ -328,13 +328,12 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||||||
* Given the following data structure:
|
* Given the following data structure:
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>{@code
|
||||||
* <code>
|
|
||||||
* List<String[]> data = new ArrayList<>();
|
* List<String[]> data = new ArrayList<>();
|
||||||
* data.add(new String[]{ "A", "B", "C" });
|
* data.add(new String[]{ "A", "B", "C" });
|
||||||
* data.add(new String[]{ "1", "2", "3" });
|
* data.add(new String[]{ "1", "2", "3" });
|
||||||
* data.add(new String[]{ "A1", "B2", "C3" });
|
* data.add(new String[]{ "A1", "B2", "C3" });
|
||||||
* </code>
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
@ -372,21 +371,19 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||||||
* Given the following data structure:
|
* Given the following data structure:
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>{@code
|
||||||
* <code>
|
|
||||||
* String[][] data = new String[3][]
|
* String[][] data = new String[3][]
|
||||||
* data[0] = String[]{ "A", "B", "C" };
|
* data[0] = String[]{ "A", "B", "C" };
|
||||||
* data[1] = new String[]{ "1", "2", "3" };
|
* data[1] = new String[]{ "1", "2", "3" };
|
||||||
* data[2] = new String[]{ "A1", "B2", "C3" };
|
* data[2] = new String[]{ "A1", "B2", "C3" };
|
||||||
* </code>
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Calling this method will print:
|
* Calling this method will print:
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>{@code
|
||||||
* {@code
|
|
||||||
* A, B, C
|
* A, B, C
|
||||||
* 1, 2, 3
|
* 1, 2, 3
|
||||||
* A1, B2, C3
|
* A1, B2, C3
|
||||||
@ -462,14 +459,13 @@ public final class CSVPrinter implements Flushable, Closeable {
|
|||||||
* Given the following data structure:
|
* Given the following data structure:
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>{@code
|
||||||
* <code>
|
|
||||||
* List<String[]> data = new ArrayList<>();
|
* List<String[]> data = new ArrayList<>();
|
||||||
* data.add(new String[]{ "A", "B", "C" });
|
* data.add(new String[]{ "A", "B", "C" });
|
||||||
* data.add(new String[]{ "1", "2", "3" });
|
* data.add(new String[]{ "1", "2", "3" });
|
||||||
* data.add(new String[]{ "A1", "B2", "C3" });
|
* data.add(new String[]{ "A1", "B2", "C3" });
|
||||||
* Stream<String[]> stream = data.stream();
|
* Stream<String[]> stream = data.stream();
|
||||||
* </code>
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user