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