public enum QuoteMode extends Enum<QuoteMode>
Enum Constant and Description |
---|
ALL
Quotes all fields.
|
ALL_NON_NULL
Quotes all non-null fields.
|
MINIMAL
Quotes fields which contain special characters such as a the field delimiter, quote character or any of the
characters in the line separator string.
|
NON_NUMERIC
Quotes all non-numeric fields.
|
NONE
Never quotes fields.
|
Modifier and Type | Method and Description |
---|---|
static QuoteMode |
valueOf(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 ALL_NON_NULL
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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 The Apache Software Foundation. All rights reserved.