public static enum ScriptParser.State extends Enum<ScriptParser.State>
| Enum Constant and Description |
|---|
COMMENT |
DESCR_END |
DESCR_START |
DESCRIPTION |
PARAMS |
START |
TEST_NAME |
VAR_NAME |
VAR_SEPARATORS |
VAR_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ScriptParser.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScriptParser.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptParser.State START
public static final ScriptParser.State COMMENT
public static final ScriptParser.State DESCR_START
public static final ScriptParser.State DESCR_END
public static final ScriptParser.State DESCRIPTION
public static final ScriptParser.State PARAMS
public static final ScriptParser.State VAR_NAME
public static final ScriptParser.State VAR_VALUE
public static final ScriptParser.State VAR_SEPARATORS
public static final ScriptParser.State TEST_NAME
public static ScriptParser.State[] values()
for (ScriptParser.State c : ScriptParser.State.values()) System.out.println(c);
public static ScriptParser.State 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 © 2005–2015 Tigase. All rights reserved.