Slightly better Javadoc.
This commit is contained in:
parent
f3f48be1d0
commit
eede739d18
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue