public enum ValueQuoteType extends java.lang.Enum<ValueQuoteType>
| Enum Constant and Description |
|---|
Always
All values will be quoted always.
|
Minimum
Only quote values when needed.
|
Never
All values will not be quoted.
|
Normal
All values that contain special characters such as quotation mark, separator
character will be quoted.
|
| Modifier and Type | Method and Description |
|---|---|
static ValueQuoteType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueQuoteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueQuoteType Normal
public static final ValueQuoteType Always
public static final ValueQuoteType Minimum
public static final ValueQuoteType Never
public static ValueQuoteType[] values()
for (ValueQuoteType c : ValueQuoteType.values()) System.out.println(c);
public static ValueQuoteType 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