public static enum ScenarioResultChange.Type extends Enum<ScenarioResultChange.Type>
Enum Constant and Description |
---|
BETTER |
NEW_RESULT |
NO_RESULT |
SAME |
WORSE |
Modifier and Type | Method and Description |
---|---|
static ScenarioResultChange.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScenarioResultChange.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScenarioResultChange.Type BETTER
public static final ScenarioResultChange.Type WORSE
public static final ScenarioResultChange.Type SAME
public static final ScenarioResultChange.Type NEW_RESULT
public static final ScenarioResultChange.Type NO_RESULT
public static ScenarioResultChange.Type[] values()
for (ScenarioResultChange.Type c : ScenarioResultChange.Type.values()) System.out.println(c);
public static ScenarioResultChange.Type 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 © 2004-2012. All Rights Reserved.