private static enum QuotedCSV.State extends java.lang.Enum<QuotedCSV.State>
| Enum Constant and Description |
|---|
PARAM_NAME |
PARAM_VALUE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static QuotedCSV.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuotedCSV.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuotedCSV.State VALUE
public static final QuotedCSV.State PARAM_NAME
public static final QuotedCSV.State PARAM_VALUE
public static QuotedCSV.State[] values()
for (QuotedCSV.State c : QuotedCSV.State.values()) System.out.println(c);
public static QuotedCSV.State 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