public enum TransitionType extends Enum<TransitionType>
| Enum Constant and Description |
|---|
EXTERNAL
Implies that the Transition, if triggered, will exit the composite (source) State.
|
INTERNAL
Implies that the Transition, if triggered, occurs without exiting or entering the source State
(i.e., it does not cause a state change).
|
LOCAL
Implies that the Transition, if triggered, will not exit the composite (source) State, but it
will exit and re-enter any state within the composite State that is in the current state configuration.
|
| Modifier and Type | Method and Description |
|---|---|
static TransitionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitionType INTERNAL
public static final TransitionType LOCAL
public static final TransitionType EXTERNAL
public static TransitionType[] values()
for (TransitionType c : TransitionType.values()) System.out.println(c);
public static TransitionType 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 © 2013–2016. All rights reserved.