public enum StackState extends Enum<StackState>
| Enum Constant and Description |
|---|
CONFIGURED |
IDLE |
STARTED |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static StackState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackState IDLE
public static final StackState CONFIGURED
public static final StackState STARTED
public static final StackState STOPPED
public static StackState[] values()
for (StackState c : StackState.values()) System.out.println(c);
public static StackState 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 © 2016. All Rights Reserved.