Modified:
websites/production/commons/content/proper/commons-csv/apidocs/org/apache/commons/csv/CSVFormat.html
==============================================================================
---
websites/production/commons/content/proper/commons-csv/apidocs/org/apache/commons/csv/CSVFormat.html
(original)
+++
websites/production/commons/content/proper/commons-csv/apidocs/org/apache/commons/csv/CSVFormat.html
Thu Feb 2 12:12:49 2023
@@ -4,7 +4,7 @@
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CSVFormat (Apache Commons CSV 1.9.0 API)</title>
+<title>CSVFormat (Apache Commons CSV 1.10.0 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css"
title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@@ -12,13 +12,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="CSVFormat (Apache Commons CSV 1.9.0 API)";
+ parent.document.title="CSVFormat (Apache Commons CSV 1.10.0 API)";
}
}
catch(err) {
}
//-->
-var methods =
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":9,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":9,"i38":42,"i39":42,"i40":42,"i41":42,"i42":42,"i43":42,"i44":42,"i45":42,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42};
+var methods =
{"i0":10,"i1":10,"i2":10,"i3":42,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":9,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":9,"i39":42,"i40":42,"i41":42,"i42":42,"i43":42,"i44":42,"i45":42,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42};
var tabs = {65535:["t0","All Methods"],1:["t1","Static
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete
Methods"],32:["t6","Deprecated Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -112,10 +112,10 @@ var activeTableTab = "activeTableTab";
</dl>
<hr>
<br>
-<pre>public final class <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.163">CSVFormat</a>
+<pre>public final class <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.181">CSVFormat</a>
extends <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a>
implements <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true"
title="class or interface in java.io">Serializable</a></pre>
-<div class="block">Specifies the format of a CSV file and parses input.
+<div class="block">Specifies the format of a CSV file for parsing and writing.
<h2>Using predefined formats</h2>
@@ -220,10 +220,28 @@ implements <a href="https://docs.oracle.
This makes your code impervious to changes in column order in the CSV file.
</p>
- <h2>Notes</h2>
+ <h2>Serialization</h2>
+ <p>
+ This class implements the <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true"
title="class or interface in java.io"><code>Serializable</code></a> interface
with the following caveats:
+ </p>
+ <ul>
+ <li>This class will no longer implement Serializable in 2.0.</li>
+ <li>Serialization is not supported from one version to the next.</li>
+ </ul>
+ <p>
+ The <code>serialVersionUID</code> values are:
+ </p>
+ <ul>
+ <li>Version 1.10.0: <code>2L</code></li>
+ <li>Version 1.9.0 through 1.0: <code>1L</code></li>
+ </ul>
+ <h2>Notes</h2>
<p>
This class is immutable.
+ </p>
+ <p>
+ Not all settings are used for both parsing and writing.
</p></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
@@ -277,7 +295,8 @@ implements <a href="https://docs.oracle.
<tr class="altColor">
<td class="colFirst"><code>static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#DEFAULT">DEFAULT</a></span></code>
-<div class="block">Standard Comma Separated Value format, as for <a
href="../../../../org/apache/commons/csv/CSVFormat.html#RFC4180"><code>RFC4180</code></a>
but allowing empty lines.</div>
+<div class="block">Standard Comma Separated Value format, as for <a
href="../../../../org/apache/commons/csv/CSVFormat.html#RFC4180"><code>RFC4180</code></a>
but allowing
+ empty lines.</div>
</td>
</tr>
<tr class="rowColor">
@@ -380,25 +399,27 @@ implements <a href="https://docs.oracle.
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getAllowDuplicateHeaderNames--">getAllowDuplicateHeaderNames</a></span>()</code>
-<div class="block">Returns true if and only if duplicate names are allowed in
the headers.</div>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span>
+<div class="block"><span class="deprecationComment">Use <a
href="../../../../org/apache/commons/csv/CSVFormat.html#getDuplicateHeaderMode--"><code>getDuplicateHeaderMode()</code></a>.</span></div>
+</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getAllowMissingColumnNames--">getAllowMissingColumnNames</a></span>()</code>
-<div class="block">Specifies whether missing column names are allowed when
parsing the header line.</div>
+<div class="block">Gets whether missing column names are allowed when parsing
the header line.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getAutoFlush--">getAutoFlush</a></span>()</code>
-<div class="block">Returns whether to flush on close.</div>
+<div class="block">Gets whether to flush on close.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getCommentMarker--">getCommentMarker</a></span>()</code>
-<div class="block">Returns the character marking the start of a line
comment.</div>
+<div class="block">Gets the character marking the start of a line
comment.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
@@ -412,141 +433,147 @@ implements <a href="https://docs.oracle.
<tr id="i8" class="altColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getDelimiterString--">getDelimiterString</a></span>()</code>
-<div class="block">Returns the character delimiting the values (typically ";",
"," or "\t").</div>
+<div class="block">Gets the character delimiting the values (typically ";",
"," or "\t").</div>
</td>
</tr>
<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/DuplicateHeaderMode.html" title="enum
in org.apache.commons.csv">DuplicateHeaderMode</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getDuplicateHeaderMode--">getDuplicateHeaderMode</a></span>()</code>
+<div class="block">Gets how duplicate headers are handled.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getEscapeCharacter--">getEscapeCharacter</a></span>()</code>
-<div class="block">Returns the escape character.</div>
+<div class="block">Gets the escape character.</div>
</td>
</tr>
-<tr id="i10" class="altColor">
+<tr id="i11" class="rowColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getHeader--">getHeader</a></span>()</code>
-<div class="block">Returns a copy of the header array.</div>
+<div class="block">Gets a copy of the header array.</div>
</td>
</tr>
-<tr id="i11" class="rowColor">
+<tr id="i12" class="altColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getHeaderComments--">getHeaderComments</a></span>()</code>
-<div class="block">Returns a copy of the header comment array.</div>
+<div class="block">Gets a copy of the header comment array.</div>
</td>
</tr>
-<tr id="i12" class="altColor">
+<tr id="i13" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getIgnoreEmptyLines--">getIgnoreEmptyLines</a></span>()</code>
-<div class="block">Specifies whether empty lines between records are ignored
when parsing input.</div>
+<div class="block">Gets whether empty lines between records are ignored when
parsing input.</div>
</td>
</tr>
-<tr id="i13" class="rowColor">
+<tr id="i14" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getIgnoreHeaderCase--">getIgnoreHeaderCase</a></span>()</code>
-<div class="block">Specifies whether header names will be accessed ignoring
case.</div>
+<div class="block">Gets whether header names will be accessed ignoring case
when parsing input.</div>
</td>
</tr>
-<tr id="i14" class="altColor">
+<tr id="i15" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getIgnoreSurroundingSpaces--">getIgnoreSurroundingSpaces</a></span>()</code>
-<div class="block">Specifies whether spaces around values are ignored when
parsing input.</div>
+<div class="block">Gets whether spaces around values are ignored when parsing
input.</div>
</td>
</tr>
-<tr id="i15" class="rowColor">
+<tr id="i16" class="altColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getNullString--">getNullString</a></span>()</code>
<div class="block">Gets the String to convert to and from
<code>null</code>.</div>
</td>
</tr>
-<tr id="i16" class="altColor">
+<tr id="i17" class="rowColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getQuoteCharacter--">getQuoteCharacter</a></span>()</code>
-<div class="block">Returns the character used to encapsulate values containing
special characters.</div>
+<div class="block">Gets the character used to encapsulate values containing
special characters.</div>
</td>
</tr>
-<tr id="i17" class="rowColor">
+<tr id="i18" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/QuoteMode.html" title="enum in
org.apache.commons.csv">QuoteMode</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getQuoteMode--">getQuoteMode</a></span>()</code>
-<div class="block">Returns the quote policy output fields.</div>
+<div class="block">Gets the quote policy output fields.</div>
</td>
</tr>
-<tr id="i18" class="altColor">
+<tr id="i19" class="rowColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getRecordSeparator--">getRecordSeparator</a></span>()</code>
-<div class="block">Returns the record separator delimiting output
records.</div>
+<div class="block">Gets the record separator delimiting output records.</div>
</td>
</tr>
-<tr id="i19" class="rowColor">
+<tr id="i20" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getSkipHeaderRecord--">getSkipHeaderRecord</a></span>()</code>
-<div class="block">Returns whether to skip the header record.</div>
+<div class="block">Gets whether to skip the header record.</div>
</td>
</tr>
-<tr id="i20" class="altColor">
+<tr id="i21" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getTrailingDelimiter--">getTrailingDelimiter</a></span>()</code>
-<div class="block">Returns whether to add a trailing delimiter.</div>
+<div class="block">Gets whether to add a trailing delimiter.</div>
</td>
</tr>
-<tr id="i21" class="rowColor">
+<tr id="i22" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#getTrim--">getTrim</a></span>()</code>
-<div class="block">Returns whether to trim leading and trailing blanks.</div>
+<div class="block">Gets whether to trim leading and trailing blanks.</div>
</td>
</tr>
-<tr id="i22" class="altColor">
+<tr id="i23" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#hashCode--">hashCode</a></span>()</code> </td>
</tr>
-<tr id="i23" class="rowColor">
+<tr id="i24" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#isCommentMarkerSet--">isCommentMarkerSet</a></span>()</code>
-<div class="block">Specifies whether comments are supported by this
format.</div>
+<div class="block">Tests whether comments are supported by this format.</div>
</td>
</tr>
-<tr id="i24" class="altColor">
+<tr id="i25" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#isEscapeCharacterSet--">isEscapeCharacterSet</a></span>()</code>
-<div class="block">Returns whether escape are being processed.</div>
+<div class="block">Tests whether escape are being processed.</div>
</td>
</tr>
-<tr id="i25" class="rowColor">
+<tr id="i26" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#isNullStringSet--">isNullStringSet</a></span>()</code>
-<div class="block">Returns whether a nullString has been defined.</div>
+<div class="block">Tests whether a nullString has been defined.</div>
</td>
</tr>
-<tr id="i26" class="altColor">
+<tr id="i27" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#isQuoteCharacterSet--">isQuoteCharacterSet</a></span>()</code>
-<div class="block">Returns whether a quoteChar has been defined.</div>
+<div class="block">Tests whether a quoteChar has been defined.</div>
</td>
</tr>
-<tr id="i27" class="rowColor">
+<tr id="i28" class="altColor">
<td class="colFirst"><code>static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#newFormat-char-">newFormat</a></span>(char delimiter)</code>
<div class="block">Creates a new CSV format with the specified delimiter.</div>
</td>
</tr>
-<tr id="i28" class="altColor">
+<tr id="i29" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVParser.html" title="class in
org.apache.commons.csv">CSVParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#parse-java.io.Reader-">parse</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/Reader.html?is-external=true"
title="class or interface in java.io">Reader</a> reader)</code>
<div class="block">Parses the specified content.</div>
</td>
</tr>
-<tr id="i29" class="rowColor">
+<tr id="i30" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVPrinter.html" title="class in
org.apache.commons.csv">CSVPrinter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.lang.Appendable-">print</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> out)</code>
<div class="block">Prints to the specified output.</div>
</td>
</tr>
-<tr id="i30" class="altColor">
+<tr id="i31" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVPrinter.html" title="class in
org.apache.commons.csv">CSVPrinter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.io.File-java.nio.charset.Charset-">print</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true"
title="class or interface in java.io">File</a> out,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html?is-external=true"
title="class or interface in java.nio.charset">Charset</a> charset)</code>
<div class="block">Prints to the specified output.</div>
</td>
</tr>
-<tr id="i31" class="rowColor">
+<tr id="i32" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.lang.Object-java.lang.Appendable-boolean-">print</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a> value,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> out,
@@ -554,43 +581,43 @@ implements <a href="https://docs.oracle.
<div class="block">Prints the <code>value</code> as the next value on the line
to <code>out</code>.</div>
</td>
</tr>
-<tr id="i32" class="altColor">
+<tr id="i33" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVPrinter.html" title="class in
org.apache.commons.csv">CSVPrinter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.nio.file.Path-java.nio.charset.Charset-">print</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html?is-external=true"
title="class or interface in java.nio.file">Path</a> out,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html?is-external=true"
title="class or interface in java.nio.charset">Charset</a> charset)</code>
<div class="block">Prints to the specified output, returns a
<code>CSVPrinter</code> which the caller MUST close.</div>
</td>
</tr>
-<tr id="i33" class="rowColor">
+<tr id="i34" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVPrinter.html" title="class in
org.apache.commons.csv">CSVPrinter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#printer--">printer</a></span>()</code>
<div class="block">Prints to the <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/System.html?is-external=true#out"
title="class or interface in java.lang"><code>System.out</code></a>.</div>
</td>
</tr>
-<tr id="i34" class="altColor">
+<tr id="i35" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#println-java.lang.Appendable-">println</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> appendable)</code>
<div class="block">Outputs the trailing delimiter (if set) followed by the
record separator (if set).</div>
</td>
</tr>
-<tr id="i35" class="rowColor">
+<tr id="i36" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#printRecord-java.lang.Appendable-java.lang.Object...-">printRecord</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> appendable,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a>... values)</code>
<div class="block">Prints the given <code>values</code> to <code>out</code> as
a single record of delimiter separated values followed by the record
separator.</div>
</td>
</tr>
-<tr id="i36" class="altColor">
+<tr id="i37" class="rowColor">
<td class="colFirst"><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#toString--">toString</a></span>()</code> </td>
</tr>
-<tr id="i37" class="rowColor">
+<tr id="i38" class="altColor">
<td class="colFirst"><code>static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#valueOf-java.lang.String-">valueOf</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> format)</code>
<div class="block">Gets one of the predefined formats from <a
href="../../../../org/apache/commons/csv/CSVFormat.Predefined.html" title="enum
in org.apache.commons.csv"><code>CSVFormat.Predefined</code></a>.</div>
</td>
</tr>
-<tr id="i38" class="altColor">
+<tr id="i39" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withAllowDuplicateHeaderNames--">withAllowDuplicateHeaderNames</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -598,7 +625,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i39" class="rowColor">
+<tr id="i40" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withAllowDuplicateHeaderNames-boolean-">withAllowDuplicateHeaderNames</a></span>(boolean allowDuplicateHeaderNames)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -606,7 +633,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i40" class="altColor">
+<tr id="i41" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withAllowMissingColumnNames--">withAllowMissingColumnNames</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -614,7 +641,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i41" class="rowColor">
+<tr id="i42" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withAllowMissingColumnNames-boolean-">withAllowMissingColumnNames</a></span>(boolean allowMissingColumnNames)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -622,7 +649,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i42" class="altColor">
+<tr id="i43" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withAutoFlush-boolean-">withAutoFlush</a></span>(boolean autoFlush)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -630,7 +657,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i43" class="rowColor">
+<tr id="i44" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withCommentMarker-char-">withCommentMarker</a></span>(char commentMarker)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -638,7 +665,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i44" class="altColor">
+<tr id="i45" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withCommentMarker-java.lang.Character-">withCommentMarker</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in
java.lang">Character</a> commentMarker)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -646,7 +673,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i45" class="rowColor">
+<tr id="i46" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withDelimiter-char-">withDelimiter</a></span>(char delimiter)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -654,7 +681,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i46" class="altColor">
+<tr id="i47" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withEscape-char-">withEscape</a></span>(char escape)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -662,7 +689,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i47" class="rowColor">
+<tr id="i48" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withEscape-java.lang.Character-">withEscape</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> escape)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -670,7 +697,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i48" class="altColor">
+<tr id="i49" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withFirstRecordAsHeader--">withFirstRecordAsHeader</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -678,7 +705,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i49" class="rowColor">
+<tr id="i50" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withHeader-java.lang.Class-">withHeader</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true"
title="class or interface in java.lang">Class</a><? extends <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true"
title="class or interface in
java.lang">Enum</a><?>> headerEnum)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -686,7 +713,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i50" class="altColor">
+<tr id="i51" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withHeader-java.sql.ResultSet-">withHeader</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/sql/ResultSet.html?is-external=true"
title="class or interface in java.sql">ResultSet</a> resultSet)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -694,7 +721,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i51" class="rowColor">
+<tr id="i52" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withHeader-java.sql.ResultSetMetaData-">withHeader</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/sql/ResultSetMetaData.html?is-external=true"
title="class or interface in
java.sql">ResultSetMetaData</a> resultSetMetaData)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -702,7 +729,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i52" class="altColor">
+<tr id="i53" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withHeader-java.lang.String...-">withHeader</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>... header)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -710,7 +737,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i53" class="rowColor">
+<tr id="i54" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withHeaderComments-java.lang.Object...-">withHeaderComments</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in
java.lang">Object</a>... headerComments)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -718,7 +745,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i54" class="altColor">
+<tr id="i55" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreEmptyLines--">withIgnoreEmptyLines</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -726,7 +753,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i55" class="rowColor">
+<tr id="i56" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreEmptyLines-boolean-">withIgnoreEmptyLines</a></span>(boolean ignoreEmptyLines)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -734,7 +761,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i56" class="altColor">
+<tr id="i57" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreHeaderCase--">withIgnoreHeaderCase</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -742,7 +769,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i57" class="rowColor">
+<tr id="i58" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreHeaderCase-boolean-">withIgnoreHeaderCase</a></span>(boolean ignoreHeaderCase)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -750,7 +777,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i58" class="altColor">
+<tr id="i59" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreSurroundingSpaces--">withIgnoreSurroundingSpaces</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -758,7 +785,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i59" class="rowColor">
+<tr id="i60" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withIgnoreSurroundingSpaces-boolean-">withIgnoreSurroundingSpaces</a></span>(boolean ignoreSurroundingSpaces)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -766,7 +793,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i60" class="altColor">
+<tr id="i61" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withNullString-java.lang.String-">withNullString</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> nullString)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -774,7 +801,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i61" class="rowColor">
+<tr id="i62" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withQuote-char-">withQuote</a></span>(char quoteChar)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -782,7 +809,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i62" class="altColor">
+<tr id="i63" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withQuote-java.lang.Character-">withQuote</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> quoteChar)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -790,7 +817,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i63" class="rowColor">
+<tr id="i64" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withQuoteMode-org.apache.commons.csv.QuoteMode-">withQuoteMode</a></span>(<a
href="../../../../org/apache/commons/csv/QuoteMode.html" title="enum in
org.apache.commons.csv">QuoteMode</a> quoteMode)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -798,7 +825,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i64" class="altColor">
+<tr id="i65" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withRecordSeparator-char-">withRecordSeparator</a></span>(char recordSeparator)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -806,7 +833,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i65" class="rowColor">
+<tr id="i66" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withRecordSeparator-java.lang.String-">withRecordSeparator</a></span>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> recordSeparator)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -814,7 +841,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i66" class="altColor">
+<tr id="i67" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withSkipHeaderRecord--">withSkipHeaderRecord</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -822,7 +849,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i67" class="rowColor">
+<tr id="i68" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withSkipHeaderRecord-boolean-">withSkipHeaderRecord</a></span>(boolean skipHeaderRecord)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -830,7 +857,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i68" class="altColor">
+<tr id="i69" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withSystemRecordSeparator--">withSystemRecordSeparator</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -838,7 +865,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i69" class="rowColor">
+<tr id="i70" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withTrailingDelimiter--">withTrailingDelimiter</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -846,7 +873,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i70" class="altColor">
+<tr id="i71" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withTrailingDelimiter-boolean-">withTrailingDelimiter</a></span>(boolean trailingDelimiter)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -854,7 +881,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i71" class="rowColor">
+<tr id="i72" class="altColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withTrim--">withTrim</a></span>()</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -862,7 +889,7 @@ implements <a href="https://docs.oracle.
</div>
</td>
</tr>
-<tr id="i72" class="altColor">
+<tr id="i73" class="rowColor">
<td class="colFirst"><code><a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a
href="../../../../org/apache/commons/csv/CSVFormat.html#withTrim-boolean-">withTrim</a></span>(boolean trim)</code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
@@ -898,8 +925,9 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.778">DEFAULT</a></pre>
-<div class="block">Standard Comma Separated Value format, as for <a
href="../../../../org/apache/commons/csv/CSVFormat.html#RFC4180"><code>RFC4180</code></a>
but allowing empty lines.
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.812">DEFAULT</a></pre>
+<div class="block">Standard Comma Separated Value format, as for <a
href="../../../../org/apache/commons/csv/CSVFormat.html#RFC4180"><code>RFC4180</code></a>
but allowing
+ empty lines.
<p>
The <a href="../../../../org/apache/commons/csv/CSVFormat.Builder.html"
title="class in org.apache.commons.csv"><code>CSVFormat.Builder</code></a>
settings are:
@@ -909,7 +937,7 @@ implements <a href="https://docs.oracle.
<li><code>setQuote('"')</code></li>
<li><code>setRecordSeparator("\r\n")</code></li>
<li><code>setIgnoreEmptyLines(true)</code></li>
- <li><code>setAllowDuplicateHeaderNames(true)</code></li>
+ <li><code>setDuplicateHeaderMode(DuplicateHeaderMode.ALLOW_ALL)</code></li>
</ul></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
@@ -923,7 +951,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>EXCEL</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.812">EXCEL</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.846">EXCEL</a></pre>
<div class="block">Excel file format (using a comma as the value delimiter).
Note that the actual value delimiter used by Excel is locale dependent, it
might be necessary
to customize this format to accommodate to your regional settings.
@@ -944,7 +972,7 @@ implements <a href="https://docs.oracle.
<li><code>setRecordSeparator("\r\n")</code></li>
<li><code>setIgnoreEmptyLines(false)</code></li>
<li><code>setAllowMissingColumnNames(true)</code></li>
- <li><code>setAllowDuplicateHeaderNames(true)</code></li>
+ <li><code>setDuplicateHeaderMode(DuplicateHeaderMode.ALLOW_ALL)</code></li>
</ul>
<p>
Note: This is currently like <a
href="../../../../org/apache/commons/csv/CSVFormat.html#RFC4180"><code>RFC4180</code></a>
plus <a
href="../../../../org/apache/commons/csv/CSVFormat.Builder.html#setAllowMissingColumnNames-boolean-"><code>Builder#setAllowMissingColumnNames(true)</code></a>
and
@@ -962,7 +990,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>INFORMIX_UNLOAD</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.842">INFORMIX_UNLOAD</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.876">INFORMIX_UNLOAD</a></pre>
<div class="block">Default Informix CSV UNLOAD format used by the <code>UNLOAD
TO file_name</code> operation.
<p>
@@ -995,7 +1023,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>INFORMIX_UNLOAD_CSV</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.873">INFORMIX_UNLOAD_CSV</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.907">INFORMIX_UNLOAD_CSV</a></pre>
<div class="block">Default Informix CSV UNLOAD format used by the <code>UNLOAD
TO file_name</code> operation (escaping is disabled.)
<p>
@@ -1027,7 +1055,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>MONGODB_CSV</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.907">MONGODB_CSV</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.941">MONGODB_CSV</a></pre>
<div class="block">Default MongoDB CSV format used by the
<code>mongoexport</code> operation.
<p>
<b>Parsing is not supported yet.</b>
@@ -1063,7 +1091,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>MONGODB_TSV</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.944">MONGODB_TSV</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.978">MONGODB_TSV</a></pre>
<div class="block">Default MongoDB TSV format used by the
<code>mongoexport</code> operation.
<p>
<b>Parsing is not supported yet.</b>
@@ -1100,7 +1128,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>MYSQL</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.979">MYSQL</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1013">MYSQL</a></pre>
<div class="block">Default MySQL format used by the <code>SELECT INTO
OUTFILE</code> and <code>LOAD DATA INFILE</code> operations.
<p>
@@ -1134,7 +1162,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>ORACLE</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1018">ORACLE</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1052">ORACLE</a></pre>
<div class="block">Default Oracle format used by the SQL*Loader utility.
<p>
@@ -1171,12 +1199,12 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>POSTGRESQL_CSV</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1057">POSTGRESQL_CSV</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1091">POSTGRESQL_CSV</a></pre>
<div class="block">Default PostgreSQL CSV format used by the <code>COPY</code>
operation.
<p>
This is a comma-delimited format with a LF character as the line separator.
Values are double quoted and special
- characters are escaped with <code>'"'</code>. The default NULL string is
<code>""</code>.
+ characters are not escaped. The default NULL string is <code>""</code>.
</p>
<p>
@@ -1184,7 +1212,7 @@ implements <a href="https://docs.oracle.
</p>
<ul>
<li><code>setDelimiter(',')</code></li>
- <li><code>setEscape('"')</code></li>
+ <li><code>setEscape(null)</code></li>
<li><code>setIgnoreEmptyLines(false)</code></li>
<li><code>setQuote('"')</code></li>
<li><code>setRecordSeparator('\n')</code></li>
@@ -1207,12 +1235,12 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>POSTGRESQL_TEXT</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1095">POSTGRESQL_TEXT</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1129">POSTGRESQL_TEXT</a></pre>
<div class="block">Default PostgreSQL text format used by the
<code>COPY</code> operation.
<p>
- This is a tab-delimited format with a LF character as the line separator.
Values are double quoted and special
- characters are escaped with <code>'"'</code>. The default NULL string is
<code>"\\N"</code>.
+ This is a tab-delimited format with a LF character as the line separator.
Values are not quoted and special
+ characters are escaped with <code>'\\'</code>. The default NULL string is
<code>"\\N"</code>.
</p>
<p>
@@ -1222,7 +1250,7 @@ implements <a href="https://docs.oracle.
<li><code>setDelimiter('\t')</code></li>
<li><code>setEscape('\\')</code></li>
<li><code>setIgnoreEmptyLines(false)</code></li>
- <li><code>setQuote('"')</code></li>
+ <li><code>setQuote(null)</code></li>
<li><code>setRecordSeparator('\n')</code></li>
<li><code>setNullString("\\N")</code></li>
<li><code>setQuoteMode(QuoteMode.ALL_NON_NULL)</code></li>
@@ -1243,7 +1271,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>RFC4180</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1121">RFC4180</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1155">RFC4180</a></pre>
<div class="block">Comma separated format as defined by <a
href="http://tools.ietf.org/html/rfc4180">RFC 4180</a>.
<p>
@@ -1267,7 +1295,7 @@ implements <a href="https://docs.oracle.
<ul class="blockListLast">
<li class="blockList">
<h4>TDF</h4>
-<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1141">TDF</a></pre>
+<pre>public static final <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1175">TDF</a></pre>
<div class="block">Tab-delimited format.
<p>
@@ -1299,7 +1327,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>newFormat</h4>
-<pre>public static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1220">newFormat</a>(char delimiter)</pre>
+<pre>public static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1269">newFormat</a>(char delimiter)</pre>
<div class="block">Creates a new CSV format with the specified delimiter.
<p>
@@ -1327,7 +1355,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
-<pre>public static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1260">valueOf</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> format)</pre>
+<pre>public static <a
href="../../../../org/apache/commons/csv/CSVFormat.html" title="class in
org.apache.commons.csv">CSVFormat</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1307">valueOf</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> format)</pre>
<div class="block">Gets one of the predefined formats from <a
href="../../../../org/apache/commons/csv/CSVFormat.Predefined.html" title="enum
in org.apache.commons.csv"><code>CSVFormat.Predefined</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@@ -1345,7 +1373,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>builder</h4>
-<pre>public <a
href="../../../../org/apache/commons/csv/CSVFormat.Builder.html" title="class
in org.apache.commons.csv">CSVFormat.Builder</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1395">builder</a>()</pre>
+<pre>public <a
href="../../../../org/apache/commons/csv/CSVFormat.Builder.html" title="class
in org.apache.commons.csv">CSVFormat.Builder</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1443">builder</a>()</pre>
<div class="block">Creates a new Builder for this instance.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
@@ -1359,7 +1387,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>equals</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1409">equals</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a> obj)</pre>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1457">equals</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a> obj)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-"
title="class or interface in java.lang">equals</a></code> in
class <code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a></code></dd>
@@ -1372,7 +1400,7 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>format</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1433">format</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a>... values)</pre>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1481">format</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a>... values)</pre>
<div class="block">Formats the specified values.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@@ -1388,8 +1416,10 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>getAllowDuplicateHeaderNames</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1452">getAllowDuplicateHeaderNames</a>()</pre>
-<div class="block">Returns true if and only if duplicate names are allowed in
the headers.</div>
+<pre><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true"
title="class or interface in java.lang">@Deprecated</a>
+public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1502">getAllowDuplicateHeaderNames</a>()</pre>
+<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span
class="deprecationComment">Use <a
href="../../../../org/apache/commons/csv/CSVFormat.html#getDuplicateHeaderMode--"><code>getDuplicateHeaderMode()</code></a>.</span></div>
+<div class="block">Gets whether duplicate names are allowed in the
headers.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>whether duplicate header names are allowed</dd>
@@ -1404,8 +1434,8 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>getAllowMissingColumnNames</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1461">getAllowMissingColumnNames</a>()</pre>
-<div class="block">Specifies whether missing column names are allowed when
parsing the header line.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1511">getAllowMissingColumnNames</a>()</pre>
+<div class="block">Gets whether missing column names are allowed when parsing
the header line.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if missing column names are allowed when parsing the
header line, <code>false</code> to throw an <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true"
title="class or interface in
java.lang"><code>IllegalArgumentException</code></a>.</dd>
@@ -1418,8 +1448,8 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>getAutoFlush</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1471">getAutoFlush</a>()</pre>
-<div class="block">Returns whether to flush on close.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1521">getAutoFlush</a>()</pre>
+<div class="block">Gets whether to flush on close.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>whether to flush on close.</dd>
@@ -1434,8 +1464,8 @@ implements <a href="https://docs.oracle.
<ul class="blockList">
<li class="blockList">
<h4>getCommentMarker</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1480">getCommentMarker</a>()</pre>
-<div class="block">Returns the character marking the start of a line
comment.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1530">getCommentMarker</a>()</pre>
+<div class="block">Gets the character marking the start of a line
comment.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the comment start marker, may be <code>null</code></dd>
@@ -1449,9 +1479,9 @@ implements <a href="https://docs.oracle.
<li class="blockList">
<h4>getDelimiter</h4>
<pre><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true"
title="class or interface in java.lang">@Deprecated</a>
-public char <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1491">getDelimiter</a>()</pre>
+public char <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1541">getDelimiter</a>()</pre>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span
class="deprecationComment">Use <a
href="../../../../org/apache/commons/csv/CSVFormat.html#getDelimiterString--"><code>getDelimiterString()</code></a>.</span></div>
-<div class="block">Returns the first character delimiting the values
(typically ';', ',' or '\t').</div>
+<div class="block">Gets the first character delimiting the values (typically
';', ',' or '\t').</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the first delimiter character.</dd>
@@ -1464,11 +1494,29 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getDelimiterString</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1500">getDelimiterString</a>()</pre>
-<div class="block">Returns the character delimiting the values (typically ";",
"," or "\t").</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1551">getDelimiterString</a>()</pre>
+<div class="block">Gets the character delimiting the values (typically ";",
"," or "\t").</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the delimiter.</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>1.9.0</dd>
+</dl>
+</li>
+</ul>
+<a name="getDuplicateHeaderMode--">
+<!-- -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getDuplicateHeaderMode</h4>
+<pre>public <a
href="../../../../org/apache/commons/csv/DuplicateHeaderMode.html" title="enum
in org.apache.commons.csv">DuplicateHeaderMode</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1561">getDuplicateHeaderMode</a>()</pre>
+<div class="block">Gets how duplicate headers are handled.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>if duplicate header values are allowed, allowed conditionally, or
disallowed.</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>1.10.0</dd>
</dl>
</li>
</ul>
@@ -1478,8 +1526,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getEscapeCharacter</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1509">getEscapeCharacter</a>()</pre>
-<div class="block">Returns the escape character.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1570">getEscapeCharacter</a>()</pre>
+<div class="block">Gets the escape character.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the escape character, may be <code>null</code></dd>
@@ -1492,8 +1540,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getHeader</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[] <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1518">getHeader</a>()</pre>
-<div class="block">Returns a copy of the header array.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[] <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1579">getHeader</a>()</pre>
+<div class="block">Gets a copy of the header array.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a copy of the header array; <code>null</code> if disabled, the empty array
if to be read from the file</dd>
@@ -1506,8 +1554,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getHeaderComments</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[] <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1527">getHeaderComments</a>()</pre>
-<div class="block">Returns a copy of the header comment array.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a>[] <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1588">getHeaderComments</a>()</pre>
+<div class="block">Gets a copy of the header comment array.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a copy of the header comment array; <code>null</code> if disabled.</dd>
@@ -1520,8 +1568,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getIgnoreEmptyLines</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1536">getIgnoreEmptyLines</a>()</pre>
-<div class="block">Specifies whether empty lines between records are ignored
when parsing input.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1597">getIgnoreEmptyLines</a>()</pre>
+<div class="block">Gets whether empty lines between records are ignored when
parsing input.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if empty lines between records are ignored,
<code>false</code> if they are turned into empty records.</dd>
@@ -1534,8 +1582,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getIgnoreHeaderCase</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1546">getIgnoreHeaderCase</a>()</pre>
-<div class="block">Specifies whether header names will be accessed ignoring
case.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1607">getIgnoreHeaderCase</a>()</pre>
+<div class="block">Gets whether header names will be accessed ignoring case
when parsing input.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if header names cases are ignored, <code>false</code> if
they are case sensitive.</dd>
@@ -1550,8 +1598,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getIgnoreSurroundingSpaces</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1555">getIgnoreSurroundingSpaces</a>()</pre>
-<div class="block">Specifies whether spaces around values are ignored when
parsing input.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1616">getIgnoreSurroundingSpaces</a>()</pre>
+<div class="block">Gets whether spaces around values are ignored when parsing
input.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if spaces around values are ignored, <code>false</code>
if they are treated as part of the value.</dd>
@@ -1564,7 +1612,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getNullString</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1568">getNullString</a>()</pre>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1629">getNullString</a>()</pre>
<div class="block">Gets the String to convert to and from <code>null</code>.
<ul>
<li><strong>Reading:</strong> Converts strings equal to the given
<code>nullString</code> to <code>null</code> when reading records.</li>
@@ -1582,8 +1630,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getQuoteCharacter</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1577">getQuoteCharacter</a>()</pre>
-<div class="block">Returns the character used to encapsulate values containing
special characters.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true"
title="class or interface in java.lang">Character</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1638">getQuoteCharacter</a>()</pre>
+<div class="block">Gets the character used to encapsulate values containing
special characters.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the quoteChar character, may be <code>null</code></dd>
@@ -1596,8 +1644,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getQuoteMode</h4>
-<pre>public <a href="../../../../org/apache/commons/csv/QuoteMode.html"
title="enum in org.apache.commons.csv">QuoteMode</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1586">getQuoteMode</a>()</pre>
-<div class="block">Returns the quote policy output fields.</div>
+<pre>public <a href="../../../../org/apache/commons/csv/QuoteMode.html"
title="enum in org.apache.commons.csv">QuoteMode</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1647">getQuoteMode</a>()</pre>
+<div class="block">Gets the quote policy output fields.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the quote policy</dd>
@@ -1610,8 +1658,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getRecordSeparator</h4>
-<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1595">getRecordSeparator</a>()</pre>
-<div class="block">Returns the record separator delimiting output
records.</div>
+<pre>public <a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true"
title="class or interface in java.lang">String</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1656">getRecordSeparator</a>()</pre>
+<div class="block">Gets the record separator delimiting output records.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the record separator</dd>
@@ -1624,8 +1672,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getSkipHeaderRecord</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1604">getSkipHeaderRecord</a>()</pre>
-<div class="block">Returns whether to skip the header record.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1665">getSkipHeaderRecord</a>()</pre>
+<div class="block">Gets whether to skip the header record.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>whether to skip the header record.</dd>
@@ -1638,8 +1686,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getTrailingDelimiter</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1614">getTrailingDelimiter</a>()</pre>
-<div class="block">Returns whether to add a trailing delimiter.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1675">getTrailingDelimiter</a>()</pre>
+<div class="block">Gets whether to add a trailing delimiter.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>whether to add a trailing delimiter.</dd>
@@ -1654,8 +1702,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>getTrim</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1624">getTrim</a>()</pre>
-<div class="block">Returns whether to trim leading and trailing blanks. This
is used by <a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.lang.Object-java.lang.Appendable-boolean-"><code>print(Object,
Appendable, boolean)</code></a> Also by
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1685">getTrim</a>()</pre>
+<div class="block">Gets whether to trim leading and trailing blanks. This is
used by <a
href="../../../../org/apache/commons/csv/CSVFormat.html#print-java.lang.Object-java.lang.Appendable-boolean-"><code>print(Object,
Appendable, boolean)</code></a> Also by
{CSVParser#addRecordValue(boolean)}</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
@@ -1669,7 +1717,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>hashCode</h4>
-<pre>public int <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1629">hashCode</a>()</pre>
+<pre>public int <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1690">hashCode</a>()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--"
title="class or interface in java.lang">hashCode</a></code> in
class <code><a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a></code></dd>
@@ -1682,8 +1730,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>isCommentMarkerSet</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1646">isCommentMarkerSet</a>()</pre>
-<div class="block">Specifies whether comments are supported by this format.
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1707">isCommentMarkerSet</a>()</pre>
+<div class="block">Tests whether comments are supported by this format.
Note that the comment introducer character is only recognized at the start of
a line.</div>
<dl>
@@ -1698,8 +1746,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>isEscapeCharacterSet</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1686">isEscapeCharacterSet</a>()</pre>
-<div class="block">Returns whether escape are being processed.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1747">isEscapeCharacterSet</a>()</pre>
+<div class="block">Tests whether escape are being processed.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if escapes are processed</dd>
@@ -1712,8 +1760,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>isNullStringSet</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1695">isNullStringSet</a>()</pre>
-<div class="block">Returns whether a nullString has been defined.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1756">isNullStringSet</a>()</pre>
+<div class="block">Tests whether a nullString has been defined.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if a nullString is defined</dd>
@@ -1726,8 +1774,8 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>isQuoteCharacterSet</h4>
-<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1704">isQuoteCharacterSet</a>()</pre>
-<div class="block">Returns whether a quoteChar has been defined.</div>
+<pre>public boolean <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1765">isQuoteCharacterSet</a>()</pre>
+<div class="block">Tests whether a quoteChar has been defined.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if a quoteChar is defined</dd>
@@ -1740,7 +1788,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>parse</h4>
-<pre>public <a href="../../../../org/apache/commons/csv/CSVParser.html"
title="class in org.apache.commons.csv">CSVParser</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1719">parse</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/Reader.html?is-external=true"
title="class or interface in java.io">Reader</a> reader)
+<pre>public <a href="../../../../org/apache/commons/csv/CSVParser.html"
title="class in org.apache.commons.csv">CSVParser</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1780">parse</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/Reader.html?is-external=true"
title="class or interface in java.io">Reader</a> reader)
throws <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"
title="class or interface in java.io">IOException</a></pre>
<div class="block">Parses the specified content.
@@ -1763,7 +1811,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
-<pre>public <a href="../../../../org/apache/commons/csv/CSVPrinter.html"
title="class in org.apache.commons.csv">CSVPrinter</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1734">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> out)
+<pre>public <a href="../../../../org/apache/commons/csv/CSVPrinter.html"
title="class in org.apache.commons.csv">CSVPrinter</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1795">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> out)
throws <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"
title="class or interface in java.io">IOException</a></pre>
<div class="block">Prints to the specified output.
@@ -1786,7 +1834,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
-<pre>public <a href="../../../../org/apache/commons/csv/CSVPrinter.html"
title="class in org.apache.commons.csv">CSVPrinter</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1752">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true"
title="class or interface in java.io">File</a> out,
+<pre>public <a href="../../../../org/apache/commons/csv/CSVPrinter.html"
title="class in org.apache.commons.csv">CSVPrinter</a> <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1813">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true"
title="class or interface in java.io">File</a> out,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/nio/charset/Charset.html?is-external=true"
title="class or interface in java.nio.charset">Charset</a> charset)
throws <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"
title="class or interface in java.io">IOException</a></pre>
<div class="block">Prints to the specified output.
@@ -1813,7 +1861,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
-<pre>public void <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1767">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a> value,
+<pre>public void <a
href="../../../../src-html/org/apache/commons/csv/CSVFormat.html#line.1828">print</a>(<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a> value,
<a
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Appendable.html?is-external=true"
title="class or interface in java.lang">Appendable</a> out,
boolean newRecord)
throws <a
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"
title="class or interface in java.io">IOException</a></pre>
@@ -1837,7 +1885,7 @@ public char <a href="../../../
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
[... 487 lines stripped ...]