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