Enum DeviceDescriptor
- java.lang.Object
-
- java.lang.Enum<DeviceDescriptor>
-
- org.apache.plc4x.java.knxnetip.readwrite.DeviceDescriptor
-
- All Implemented Interfaces:
Serializable,Comparable<DeviceDescriptor>
public enum DeviceDescriptor extends Enum<DeviceDescriptor>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceDescriptorenumForValue(int value)static List<DeviceDescriptor>enumsForFieldFirmwareType(FirmwareType fieldValue)static List<DeviceDescriptor>enumsForFieldMediumType(DeviceDescriptorMediumType fieldValue)static DeviceDescriptorfirstEnumForFieldFirmwareType(FirmwareType fieldValue)static DeviceDescriptorfirstEnumForFieldMediumType(DeviceDescriptorMediumType fieldValue)FirmwareTypegetFirmwareType()DeviceDescriptorMediumTypegetMediumType()intgetValue()static BooleanisDefined(int value)static DeviceDescriptorvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceDescriptor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TP1_BCU_1_SYSTEM_1_0
public static final DeviceDescriptor TP1_BCU_1_SYSTEM_1_0
-
TP1_BCU_1_SYSTEM_1_1
public static final DeviceDescriptor TP1_BCU_1_SYSTEM_1_1
-
TP1_BCU_1_SYSTEM_1_2
public static final DeviceDescriptor TP1_BCU_1_SYSTEM_1_2
-
TP1_BCU_1_SYSTEM_1_3
public static final DeviceDescriptor TP1_BCU_1_SYSTEM_1_3
-
TP1_BCU_2_SYSTEM_2_0
public static final DeviceDescriptor TP1_BCU_2_SYSTEM_2_0
-
TP1_BCU_2_SYSTEM_2_1
public static final DeviceDescriptor TP1_BCU_2_SYSTEM_2_1
-
TP1_BCU_2_SYSTEM_2_5
public static final DeviceDescriptor TP1_BCU_2_SYSTEM_2_5
-
TP1_SYSTEM_300
public static final DeviceDescriptor TP1_SYSTEM_300
-
TP1_BIM_M112_0
public static final DeviceDescriptor TP1_BIM_M112_0
-
TP1_BIM_M112_1
public static final DeviceDescriptor TP1_BIM_M112_1
-
TP1_BIM_M112_5
public static final DeviceDescriptor TP1_BIM_M112_5
-
TP1_SYSTEM_B
public static final DeviceDescriptor TP1_SYSTEM_B
-
TP1_IR_DECODER_0
public static final DeviceDescriptor TP1_IR_DECODER_0
-
TP1_IR_DECODER_1
public static final DeviceDescriptor TP1_IR_DECODER_1
-
TP1_COUPLER_0
public static final DeviceDescriptor TP1_COUPLER_0
-
TP1_COUPLER_1
public static final DeviceDescriptor TP1_COUPLER_1
-
TP1_COUPLER_2
public static final DeviceDescriptor TP1_COUPLER_2
-
TP1_KNXNETIP_ROUTER
public static final DeviceDescriptor TP1_KNXNETIP_ROUTER
-
TP1_NONE_D
public static final DeviceDescriptor TP1_NONE_D
-
TP1_NONE_E
public static final DeviceDescriptor TP1_NONE_E
-
PL110_BCU_1_2
public static final DeviceDescriptor PL110_BCU_1_2
-
PL110_BCU_1_3
public static final DeviceDescriptor PL110_BCU_1_3
-
PL110_SYSTEM_B
public static final DeviceDescriptor PL110_SYSTEM_B
-
PL110_MEDIA_COUPLER_PL_TP
public static final DeviceDescriptor PL110_MEDIA_COUPLER_PL_TP
-
RF_BI_DIRECTIONAL_DEVICES
public static final DeviceDescriptor RF_BI_DIRECTIONAL_DEVICES
-
RF_UNI_DIRECTIONAL_DEVICES
public static final DeviceDescriptor RF_UNI_DIRECTIONAL_DEVICES
-
TP0_BCU_1
public static final DeviceDescriptor TP0_BCU_1
-
PL132_BCU_1
public static final DeviceDescriptor PL132_BCU_1
-
KNX_IP_SYSTEM7
public static final DeviceDescriptor KNX_IP_SYSTEM7
-
-
Method Detail
-
values
public static DeviceDescriptor[] 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 (DeviceDescriptor c : DeviceDescriptor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceDescriptor 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()
-
getFirmwareType
public FirmwareType getFirmwareType()
-
firstEnumForFieldFirmwareType
public static DeviceDescriptor firstEnumForFieldFirmwareType(FirmwareType fieldValue)
-
enumsForFieldFirmwareType
public static List<DeviceDescriptor> enumsForFieldFirmwareType(FirmwareType fieldValue)
-
getMediumType
public DeviceDescriptorMediumType getMediumType()
-
firstEnumForFieldMediumType
public static DeviceDescriptor firstEnumForFieldMediumType(DeviceDescriptorMediumType fieldValue)
-
enumsForFieldMediumType
public static List<DeviceDescriptor> enumsForFieldMediumType(DeviceDescriptorMediumType fieldValue)
-
enumForValue
public static DeviceDescriptor enumForValue(int value)
-
isDefined
public static Boolean isDefined(int value)
-
-