public static enum TileHeatExchangeStart.EnumProgressState extends java.lang.Enum<TileHeatExchangeStart.EnumProgressState>
Enum Constant and Description |
---|
OFF
Progress is at 0, not moving.
|
PREPARING
Progress is increasing from 0 to max
|
RUNNING
progress stays at max
|
STOPPING
Progress is decreasing from max to 0.
|
Modifier and Type | Method and Description |
---|---|
static TileHeatExchangeStart.EnumProgressState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TileHeatExchangeStart.EnumProgressState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TileHeatExchangeStart.EnumProgressState OFF
public static final TileHeatExchangeStart.EnumProgressState PREPARING
public static final TileHeatExchangeStart.EnumProgressState RUNNING
public static final TileHeatExchangeStart.EnumProgressState STOPPING
public static TileHeatExchangeStart.EnumProgressState[] values()
for (TileHeatExchangeStart.EnumProgressState c : TileHeatExchangeStart.EnumProgressState.values()) System.out.println(c);
public static TileHeatExchangeStart.EnumProgressState 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