Enum FirmwareType
- java.lang.Object
-
- java.lang.Enum<FirmwareType>
-
- org.apache.plc4x.java.knxnetip.readwrite.FirmwareType
-
- All Implemented Interfaces:
Serializable,Comparable<FirmwareType>
public enum FirmwareType extends Enum<FirmwareType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUPLERIR_DECODERMEDIA_COUPLER_PL_TPNONERF_BI_DIRECTIONAL_DEVICESRF_UNI_DIRECTIONAL_DEVICESSYSTEM_1SYSTEM_1_PL110SYSTEM_1_PL132SYSTEM_1_TP0SYSTEM_2SYSTEM_300SYSTEM_7SYSTEM_7_KNX_NET_IPSYSTEM_BSYSTEM_B_PL110
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FirmwareTypeenumForValue(int value)intgetValue()static BooleanisDefined(int value)static FirmwareTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FirmwareType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYSTEM_1
public static final FirmwareType SYSTEM_1
-
SYSTEM_2
public static final FirmwareType SYSTEM_2
-
SYSTEM_300
public static final FirmwareType SYSTEM_300
-
SYSTEM_7
public static final FirmwareType SYSTEM_7
-
SYSTEM_B
public static final FirmwareType SYSTEM_B
-
IR_DECODER
public static final FirmwareType IR_DECODER
-
COUPLER
public static final FirmwareType COUPLER
-
NONE
public static final FirmwareType NONE
-
SYSTEM_1_PL110
public static final FirmwareType SYSTEM_1_PL110
-
SYSTEM_B_PL110
public static final FirmwareType SYSTEM_B_PL110
-
MEDIA_COUPLER_PL_TP
public static final FirmwareType MEDIA_COUPLER_PL_TP
-
RF_BI_DIRECTIONAL_DEVICES
public static final FirmwareType RF_BI_DIRECTIONAL_DEVICES
-
RF_UNI_DIRECTIONAL_DEVICES
public static final FirmwareType RF_UNI_DIRECTIONAL_DEVICES
-
SYSTEM_1_TP0
public static final FirmwareType SYSTEM_1_TP0
-
SYSTEM_1_PL132
public static final FirmwareType SYSTEM_1_PL132
-
SYSTEM_7_KNX_NET_IP
public static final FirmwareType SYSTEM_7_KNX_NET_IP
-
-
Method Detail
-
values
public static FirmwareType[] 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 (FirmwareType c : FirmwareType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FirmwareType 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
-
getValue
public int getValue()
-
enumForValue
public static FirmwareType enumForValue(int value)
-
isDefined
public static Boolean isDefined(int value)
-
-