Package org.openwebnet4j.message
Enum Thermoregulation.LocalOffset
- java.lang.Object
-
- java.lang.Enum<Thermoregulation.LocalOffset>
-
- org.openwebnet4j.message.Thermoregulation.LocalOffset
-
- All Implemented Interfaces:
Serializable
,Comparable<Thermoregulation.LocalOffset>
- Enclosing class:
- Thermoregulation
public static enum Thermoregulation.LocalOffset extends Enum<Thermoregulation.LocalOffset>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Thermoregulation.LocalOffset
fromValue(String s)
String
getLabel()
static Thermoregulation.LocalOffset
valueOf(String name)
Returns the enum constant of this type with the specified name.static Thermoregulation.LocalOffset[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLUS_3
public static final Thermoregulation.LocalOffset PLUS_3
-
PLUS_2
public static final Thermoregulation.LocalOffset PLUS_2
-
PLUS_1
public static final Thermoregulation.LocalOffset PLUS_1
-
NORMAL
public static final Thermoregulation.LocalOffset NORMAL
-
MINUS_1
public static final Thermoregulation.LocalOffset MINUS_1
-
MINUS_2
public static final Thermoregulation.LocalOffset MINUS_2
-
MINUS_3
public static final Thermoregulation.LocalOffset MINUS_3
-
OFF
public static final Thermoregulation.LocalOffset OFF
-
PROTECTION
public static final Thermoregulation.LocalOffset PROTECTION
-
-
Method Detail
-
values
public static Thermoregulation.LocalOffset[] 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.LocalOffset c : Thermoregulation.LocalOffset.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.LocalOffset 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.LocalOffset fromValue(String s)
-
getLabel
public String getLabel()
-
-