Checkstyle: line length.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-10-29 14:29:45 +00:00
parent 5605ef2545
commit 152ce04925
1 changed files with 7 additions and 6 deletions

View File

@ -207,14 +207,15 @@ public final class CSVFormat implements Serializable {
* Settings are:
* </p>
* <ul>
* <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
* <li>{@link #withQuote(char) withQuote('"')}</li>
* <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
* <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
* <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
* <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
* <li>{@link #withQuote(char) withQuote('"')}</li>
* <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
* <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
* <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
* </ul>
* <p>
* Note: this is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}.
* Note: this is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean)
* withAllowMissingColumnNames(true)}.
* </p>
*/
public static final CSVFormat EXCEL = DEFAULT.withIgnoreEmptyLines(false).withAllowMissingColumnNames();