| Enum Constant and Description |
|---|
ALL
Quotes all fields.
|
MINIMAL
Quotes fields which contain special characters such as a delimiter, quote character or any of the characters in
line separator.
|
NON_NUMERIC
Quotes all non-numeric fields.
|
NONE
Never quotes fields.
|
| Modifier and Type | Method and Description |
|---|---|
static QuoteMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuoteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteMode ALL
public static final QuoteMode MINIMAL
public static final QuoteMode NON_NUMERIC
public static final QuoteMode NONE
public static QuoteMode[] values()
for (QuoteMode c : QuoteMode.values()) System.out.println(c);
public static QuoteMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null