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:
parent
5605ef2545
commit
152ce04925
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue