public static enum Transition.Type extends Enum<Transition.Type>
| Enum Constant and Description |
|---|
ANY_TO_ITSELF
Transition that is available in each state and allows a move
to the exact same state (i.e.
|
GLOBAL
Transition marked as global is available from every state and allows
a move to some other specified state
|
INITIAL
Initial transition used to create an issue.
|
REGULAR
Regular transition from one state to another.
|
| Modifier and Type | Method and Description |
|---|---|
static Transition.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transition.Type REGULAR
public static final Transition.Type INITIAL
public static final Transition.Type GLOBAL
public static final Transition.Type ANY_TO_ITSELF
public static Transition.Type[] values()
for (Transition.Type c : Transition.Type.values()) System.out.println(c);
public static Transition.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 © 2023 Atlassian. All rights reserved.