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