public static enum TileHeatExchange.EnumProgressState extends java.lang.Enum<TileHeatExchange.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 TileHeatExchange.EnumProgressState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TileHeatExchange.EnumProgressState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TileHeatExchange.EnumProgressState OFF
public static final TileHeatExchange.EnumProgressState PREPARING
public static final TileHeatExchange.EnumProgressState RUNNING
public static final TileHeatExchange.EnumProgressState STOPPING
public static TileHeatExchange.EnumProgressState[] values()
for (TileHeatExchange.EnumProgressState c : TileHeatExchange.EnumProgressState.values()) System.out.println(c);
public static TileHeatExchange.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