public enum StateCategory extends Enum<StateCategory>
| Enum Constant and Description |
|---|
ABORTING
The state is part of aborting states
|
CANCELLING
The state is part o canceling states
|
NORMAL
The state is part of normal states
|
| Modifier and Type | Method and Description |
|---|---|
static StateCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateCategory NORMAL
public static final StateCategory ABORTING
public static final StateCategory CANCELLING
public static StateCategory[] values()
for (StateCategory c : StateCategory.values()) System.out.println(c);
public static StateCategory 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 © 2018 Bonitasoft S.A.. All rights reserved.