public enum SStateCategory extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null