public static enum Transition.ConditionType extends Enum<Transition.ConditionType>
| Enum Constant and Description |
|---|
Condition
Normal condition type.
|
Otherwise
Condition will be executed if no other condition evaluates to true.
|
| Modifier and Type | Method and Description |
|---|---|
static Transition.ConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transition.ConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transition.ConditionType Condition
public static final Transition.ConditionType Otherwise
public static Transition.ConditionType[] values()
for (Transition.ConditionType c : Transition.ConditionType.values()) System.out.println(c);
public static Transition.ConditionType 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 © 2016 Eclipse Stardust. All Rights Reserved.