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