Package org.openwebnet4j.message
Enum Thermoregulation.DimThermo
- java.lang.Object
-
- java.lang.Enum<Thermoregulation.DimThermo>
-
- org.openwebnet4j.message.Thermoregulation.DimThermo
-
- All Implemented Interfaces:
Serializable
,Comparable<Thermoregulation.DimThermo>
,Dim
- Enclosing class:
- Thermoregulation
public static enum Thermoregulation.DimThermo extends Enum<Thermoregulation.DimThermo> implements Dim
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUATOR_STATUS
COMPLETE_PROBE_STATUS
FAN_COIL_SPEED
OFFSET
PROBE_TEMPERATURE
TEMP_SETPOINT
TEMPERATURE
VALVES_STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Thermoregulation.DimThermo
fromValue(int i)
Integer
value()
static Thermoregulation.DimThermo
valueOf(String name)
Returns the enum constant of this type with the specified name.static Thermoregulation.DimThermo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPERATURE
public static final Thermoregulation.DimThermo TEMPERATURE
-
FAN_COIL_SPEED
public static final Thermoregulation.DimThermo FAN_COIL_SPEED
-
COMPLETE_PROBE_STATUS
public static final Thermoregulation.DimThermo COMPLETE_PROBE_STATUS
-
OFFSET
public static final Thermoregulation.DimThermo OFFSET
-
TEMP_SETPOINT
public static final Thermoregulation.DimThermo TEMP_SETPOINT
-
PROBE_TEMPERATURE
public static final Thermoregulation.DimThermo PROBE_TEMPERATURE
-
VALVES_STATUS
public static final Thermoregulation.DimThermo VALVES_STATUS
-
ACTUATOR_STATUS
public static final Thermoregulation.DimThermo ACTUATOR_STATUS
-
-
Method Detail
-
values
public static Thermoregulation.DimThermo[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Thermoregulation.DimThermo c : Thermoregulation.DimThermo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Thermoregulation.DimThermo valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromValue
public static Thermoregulation.DimThermo fromValue(int i)
-
-