Package org.openwebnet4j.message
Enum GatewayMgmt.DIM
- java.lang.Object
-
- java.lang.Enum<GatewayMgmt.DIM>
-
- org.openwebnet4j.message.GatewayMgmt.DIM
-
- All Implemented Interfaces:
Serializable
,Comparable<GatewayMgmt.DIM>
,Dim
- Enclosing class:
- GatewayMgmt
public static enum GatewayMgmt.DIM extends Enum<GatewayMgmt.DIM> implements Dim
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRMWARE_VERSION
HARDWARE_VERSION
IDENTIFY
MAC_ADDRESS
MODEL
NB_NETW_PROD
PRODUCT_INFO
WHO_IMPLEMENTED
ZIGBEE_CHANNEL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GatewayMgmt.DIM
fromValue(int i)
Integer
value()
static GatewayMgmt.DIM
valueOf(String name)
Returns the enum constant of this type with the specified name.static GatewayMgmt.DIM[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAC_ADDRESS
public static final GatewayMgmt.DIM MAC_ADDRESS
-
MODEL
public static final GatewayMgmt.DIM MODEL
-
FIRMWARE_VERSION
public static final GatewayMgmt.DIM FIRMWARE_VERSION
-
HARDWARE_VERSION
public static final GatewayMgmt.DIM HARDWARE_VERSION
-
WHO_IMPLEMENTED
public static final GatewayMgmt.DIM WHO_IMPLEMENTED
-
PRODUCT_INFO
public static final GatewayMgmt.DIM PRODUCT_INFO
-
NB_NETW_PROD
public static final GatewayMgmt.DIM NB_NETW_PROD
-
IDENTIFY
public static final GatewayMgmt.DIM IDENTIFY
-
ZIGBEE_CHANNEL
public static final GatewayMgmt.DIM ZIGBEE_CHANNEL
-
-
Method Detail
-
values
public static GatewayMgmt.DIM[] 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 (GatewayMgmt.DIM c : GatewayMgmt.DIM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GatewayMgmt.DIM 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 GatewayMgmt.DIM fromValue(int i)
-
-