public enum StateType extends Enum<StateType> implements IStateType
| Enum Constant and Description |
|---|
CANCELED |
ERROR |
FINISHED |
MESSAGE |
NEXT |
OK |
PREVIOUS |
| Modifier and Type | Method and Description |
|---|---|
static StateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateType CANCELED
public static final StateType OK
public static final StateType NEXT
public static final StateType PREVIOUS
public static final StateType ERROR
public static final StateType FINISHED
public static final StateType MESSAGE
public static StateType[] values()
for (StateType c : StateType.values()) System.out.println(c);
public static StateType 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 © 2007–2018 Andreas W. Bartels. All rights reserved.