Slightly better Javadoc.

This commit is contained in:
Gary Gregory 2018-01-09 10:31:48 -07:00
parent f3f48be1d0
commit eede739d18
1 changed files with 5 additions and 6 deletions

View File

@ -17,8 +17,7 @@
package org.apache.commons.csv;
/**
* Defines quote behavior when printing.
*
* Defines quoting behavior when printing.
*/
public enum QuoteMode {
@ -33,8 +32,8 @@ public enum QuoteMode {
ALL_NON_NULL,
/**
* Quotes fields which contain special characters such as a delimiter, quotes character or any of the characters in
* line separator.
* Quotes fields which contain special characters such as a the field delimiter, quote character or any of the
* characters in the line separator string.
*/
MINIMAL,
@ -44,8 +43,8 @@ public enum QuoteMode {
NON_NUMERIC,
/**
* Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the current escape
* character. If the escape character is not set, format validation throws an exception.
* Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the escape character. If the
* escape character is not set, format validation throws an exception.
*/
NONE
}