public static enum WarmUpUtil.Warmup extends java.lang.Enum<WarmUpUtil.Warmup>
Enum Constant and Description |
---|
BANNER |
CHECKPOINT |
FLIGHT |
HOME |
WARP |
Modifier and Type | Method and Description |
---|---|
static WarmUpUtil.Warmup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WarmUpUtil.Warmup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WarmUpUtil.Warmup HOME
public static final WarmUpUtil.Warmup WARP
public static final WarmUpUtil.Warmup FLIGHT
public static final WarmUpUtil.Warmup BANNER
public static final WarmUpUtil.Warmup CHECKPOINT
public static WarmUpUtil.Warmup[] values()
for (WarmUpUtil.Warmup c : WarmUpUtil.Warmup.values()) System.out.println(c);
public static WarmUpUtil.Warmup 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