Merge pull request #466 from sigee/fix-javadoc-2
Fix documentation for CSVFormat private constructor
This commit is contained in:
commit
1559a3c99d
|
@ -1528,14 +1528,14 @@ public final class CSVFormat implements Serializable {
|
||||||
* @param ignoreSurroundingSpaces {@code true} when whitespaces enclosing values should be ignored.
|
* @param ignoreSurroundingSpaces {@code true} when whitespaces enclosing values should be ignored.
|
||||||
* @param ignoreEmptyLines {@code true} when the parser should skip empty lines.
|
* @param ignoreEmptyLines {@code true} when the parser should skip empty lines.
|
||||||
* @param recordSeparator the line separator to use for output.
|
* @param recordSeparator the line separator to use for output.
|
||||||
* @param nullString the line separator to use for output.
|
* @param nullString the String to convert to and from {@code null}.
|
||||||
* @param headerComments the comments to be printed by the Printer before the actual CSV data..
|
* @param headerComments the comments to be printed by the Printer before the actual CSV data.
|
||||||
* @param header the header.
|
* @param header the header.
|
||||||
* @param skipHeaderRecord if {@code true} the header row will be skipped.
|
* @param skipHeaderRecord if {@code true} the header row will be skipped.
|
||||||
* @param allowMissingColumnNames if {@code true} the missing column names are allowed when parsing the header line.
|
* @param allowMissingColumnNames if {@code true} the missing column names are allowed when parsing the header line.
|
||||||
* @param ignoreHeaderCase if {@code true} header names will be accessed ignoring case when parsing input.
|
* @param ignoreHeaderCase if {@code true} header names will be accessed ignoring case when parsing input.
|
||||||
* @param trim if {@code true} next record value will be trimmed.
|
* @param trim if {@code true} next record value will be trimmed.
|
||||||
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set)..
|
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set).
|
||||||
* @param autoFlush if {@code true} the underlying stream will be flushed before closing.
|
* @param autoFlush if {@code true} the underlying stream will be flushed before closing.
|
||||||
* @param duplicateHeaderMode the behavior when handling duplicate headers.
|
* @param duplicateHeaderMode the behavior when handling duplicate headers.
|
||||||
* @param trailingData whether reading trailing data is allowed in records, helps Excel compatibility.
|
* @param trailingData whether reading trailing data is allowed in records, helps Excel compatibility.
|
||||||
|
|
Loading…
Reference in New Issue