Merge pull request #466 from sigee/fix-javadoc-2

Fix documentation for CSVFormat private constructor
This commit is contained in:
Gary Gregory 2024-08-21 09:28:03 -04:00 committed by GitHub
commit 1559a3c99d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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.