Package org.openwebnet4j.message
Enum Thermoregulation.ValveOrActuatorStatus
- java.lang.Object
-
- java.lang.Enum<Thermoregulation.ValveOrActuatorStatus>
-
- org.openwebnet4j.message.Thermoregulation.ValveOrActuatorStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<Thermoregulation.ValveOrActuatorStatus>
- Enclosing class:
- Thermoregulation
public static enum Thermoregulation.ValveOrActuatorStatus extends Enum<Thermoregulation.ValveOrActuatorStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSED
OFF
OFF_FAN_COIL
OFF_SPEED_1
OFF_SPEED_2
OFF_SPEED_3
ON
ON_FAN_COIL
ON_SPEED_1
ON_SPEED_2
ON_SPEED_3
OPENED
STOP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Thermoregulation.ValveOrActuatorStatus
fromValue(Integer i)
Integer
value()
static Thermoregulation.ValveOrActuatorStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Thermoregulation.ValveOrActuatorStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final Thermoregulation.ValveOrActuatorStatus OFF
-
ON
public static final Thermoregulation.ValveOrActuatorStatus ON
-
OPENED
public static final Thermoregulation.ValveOrActuatorStatus OPENED
-
CLOSED
public static final Thermoregulation.ValveOrActuatorStatus CLOSED
-
STOP
public static final Thermoregulation.ValveOrActuatorStatus STOP
-
OFF_FAN_COIL
public static final Thermoregulation.ValveOrActuatorStatus OFF_FAN_COIL
-
ON_SPEED_1
public static final Thermoregulation.ValveOrActuatorStatus ON_SPEED_1
-
ON_SPEED_2
public static final Thermoregulation.ValveOrActuatorStatus ON_SPEED_2
-
ON_SPEED_3
public static final Thermoregulation.ValveOrActuatorStatus ON_SPEED_3
-
ON_FAN_COIL
public static final Thermoregulation.ValveOrActuatorStatus ON_FAN_COIL
-
OFF_SPEED_1
public static final Thermoregulation.ValveOrActuatorStatus OFF_SPEED_1
-
OFF_SPEED_2
public static final Thermoregulation.ValveOrActuatorStatus OFF_SPEED_2
-
OFF_SPEED_3
public static final Thermoregulation.ValveOrActuatorStatus OFF_SPEED_3
-
-
Method Detail
-
values
public static Thermoregulation.ValveOrActuatorStatus[] 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.ValveOrActuatorStatus c : Thermoregulation.ValveOrActuatorStatus.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.ValveOrActuatorStatus 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.ValveOrActuatorStatus fromValue(Integer i)
-
value
public Integer value()
-
-