public static enum CoolingSchedulesModule.Type extends java.lang.Enum<CoolingSchedulesModule.Type>
CoolingSchedule
to use.Enum Constant and Description |
---|
EXPONENTIAL
Use the
CoolingScheduleExponential . |
HYPERBOLIC
Use the
CoolingScheduleHyperbolic . |
LINEAR
Use the
CoolingScheduleLinear . |
Modifier and Type | Method and Description |
---|---|
static CoolingSchedulesModule.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoolingSchedulesModule.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoolingSchedulesModule.Type LINEAR
CoolingScheduleLinear
.public static final CoolingSchedulesModule.Type HYPERBOLIC
CoolingScheduleHyperbolic
.public static final CoolingSchedulesModule.Type EXPONENTIAL
CoolingScheduleExponential
.public static CoolingSchedulesModule.Type[] values()
for (CoolingSchedulesModule.Type c : CoolingSchedulesModule.Type.values()) System.out.println(c);
public static CoolingSchedulesModule.Type 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