3131
3232/**
3333 * Prints values in a CSV format.
34- *
34+ *
3535 * @version $Id$
3636 */
3737public class CSVPrinter implements Flushable , Closeable {
@@ -48,7 +48,7 @@ public class CSVPrinter implements Flushable, Closeable {
4848 * <p/>
4949 * Currently, only a pure encapsulation format or a pure escaping format is supported. Hybrid formats
5050 * (encapsulation and escaping with a different character) are not supported.
51- *
51+ *
5252 * @param out
5353 * stream to which to print.
5454 * @param format
@@ -75,7 +75,7 @@ public void println() throws IOException {
7575
7676 /**
7777 * Flushes the underlying stream.
78- *
78+ *
7979 * @throws IOException
8080 */
8181 public void flush () throws IOException {
@@ -87,7 +87,7 @@ public void flush() throws IOException {
8787 /**
8888 * Prints a single line of delimiter separated values. The values will be quoted if needed. Quotes and newLine
8989 * characters will be escaped.
90- *
90+ *
9191 * @param values
9292 * values to output.
9393 */
@@ -101,7 +101,7 @@ public void printRecord(final Object... values) throws IOException {
101101 /**
102102 * Prints a single line of delimiter separated values. The values will be quoted if needed. Quotes and newLine
103103 * characters will be escaped.
104- *
104+ *
105105 * @param values
106106 * values to output.
107107 */
@@ -118,7 +118,7 @@ public void printRecord(final Iterable<?> values) throws IOException {
118118 * beginning of each new line in the comment.
119119 * <p/>
120120 * If comments are disabled in the current CSV format this method does nothing.
121- *
121+ *
122122 * @param comment
123123 * the comment to output
124124 */
@@ -297,7 +297,7 @@ void printAndQuote(final Object object, final CharSequence value, final int offs
297297 out .append (value , start , end );
298298 return ;
299299 }
300-
300+
301301 // we hit something that needed encapsulation
302302 out .append (quoteChar );
303303
@@ -324,7 +324,7 @@ void printAndQuote(final Object object, final CharSequence value, final int offs
324324
325325 /**
326326 * Prints the string as the next value on the line. The value will be escaped or encapsulated as needed.
327- *
327+ *
328328 * @param value
329329 * value to be output.
330330 * @throws IOException
@@ -338,7 +338,7 @@ public void print(final Object value) throws IOException {
338338
339339 /**
340340 * Prints all the objects in the given array.
341- *
341+ *
342342 * @param values
343343 * the values to print.
344344 * @throws IOException
@@ -358,7 +358,7 @@ public void printRecords(final Object[] values) throws IOException {
358358
359359 /**
360360 * Prints all the objects in the given collection.
361- *
361+ *
362362 * @param values
363363 * the values to print.
364364 * @throws IOException
@@ -378,7 +378,7 @@ public void printRecords(final Iterable<?> values) throws IOException {
378378
379379 /**
380380 * Prints all the objects in the given JDBC result set.
381- *
381+ *
382382 * @param resultSet result set
383383 * the values to print.
384384 * @throws IOException
0 commit comments