public static enum HighSkill.HighSkillState extends Enum<HighSkill.HighSkillState>
HighSkill.execute()
method.
Enum Constant and Description |
---|
END_STATE |
EXECUTING_STATE |
FINALIZING_STATE |
INITIAL_STATE |
Modifier and Type | Method and Description |
---|---|
static HighSkill.HighSkillState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HighSkill.HighSkillState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HighSkill.HighSkillState INITIAL_STATE
public static final HighSkill.HighSkillState EXECUTING_STATE
public static final HighSkill.HighSkillState FINALIZING_STATE
public static final HighSkill.HighSkillState END_STATE
public static HighSkill.HighSkillState[] values()
for (HighSkill.HighSkillState c : HighSkill.HighSkillState.values()) System.out.println(c);
public static HighSkill.HighSkillState 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 null