Enum SupportedPhysicalMedia
- java.lang.Object
-
- java.lang.Enum<SupportedPhysicalMedia>
-
- org.apache.plc4x.java.knxnetip.readwrite.SupportedPhysicalMedia
-
- All Implemented Interfaces:
Serializable,Comparable<SupportedPhysicalMedia>
public enum SupportedPhysicalMedia extends Enum<SupportedPhysicalMedia>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SupportedPhysicalMediaenumForValue(short value)static List<SupportedPhysicalMedia>enumsForFieldDescription(String fieldValue)static List<SupportedPhysicalMedia>enumsForFieldKnxSupport(boolean fieldValue)static SupportedPhysicalMediafirstEnumForFieldDescription(String fieldValue)static SupportedPhysicalMediafirstEnumForFieldKnxSupport(boolean fieldValue)StringgetDescription()booleangetKnxSupport()shortgetValue()static BooleanisDefined(short value)static SupportedPhysicalMediavalueOf(String name)Returns the enum constant of this type with the specified name.static SupportedPhysicalMedia[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OTHER
public static final SupportedPhysicalMedia OTHER
-
OIL_METER
public static final SupportedPhysicalMedia OIL_METER
-
ELECTRICITY_METER
public static final SupportedPhysicalMedia ELECTRICITY_METER
-
GAS_METER
public static final SupportedPhysicalMedia GAS_METER
-
HEAT_METER
public static final SupportedPhysicalMedia HEAT_METER
-
STEAM_METER
public static final SupportedPhysicalMedia STEAM_METER
-
WARM_WATER_METER
public static final SupportedPhysicalMedia WARM_WATER_METER
-
WATER_METER
public static final SupportedPhysicalMedia WATER_METER
-
HEAT_COST_ALLOCATOR
public static final SupportedPhysicalMedia HEAT_COST_ALLOCATOR
-
COMPRESSED_AIR
public static final SupportedPhysicalMedia COMPRESSED_AIR
-
COOLING_LOAD_METER_INLET
public static final SupportedPhysicalMedia COOLING_LOAD_METER_INLET
-
COOLING_LOAD_METER_OUTLET
public static final SupportedPhysicalMedia COOLING_LOAD_METER_OUTLET
-
HEAT_INLET
public static final SupportedPhysicalMedia HEAT_INLET
-
HEAT_AND_COOL
public static final SupportedPhysicalMedia HEAT_AND_COOL
-
BUS_OR_SYSTEM
public static final SupportedPhysicalMedia BUS_OR_SYSTEM
-
UNKNOWN_DEVICE_TYPE
public static final SupportedPhysicalMedia UNKNOWN_DEVICE_TYPE
-
BREAKER
public static final SupportedPhysicalMedia BREAKER
-
VALVE
public static final SupportedPhysicalMedia VALVE
-
WASTE_WATER_METER
public static final SupportedPhysicalMedia WASTE_WATER_METER
-
GARBAGE
public static final SupportedPhysicalMedia GARBAGE
-
RADIO_CONVERTER
public static final SupportedPhysicalMedia RADIO_CONVERTER
-
-
Method Detail
-
values
public static SupportedPhysicalMedia[] 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 (SupportedPhysicalMedia c : SupportedPhysicalMedia.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupportedPhysicalMedia 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 short getValue()
-
getKnxSupport
public boolean getKnxSupport()
-
firstEnumForFieldKnxSupport
public static SupportedPhysicalMedia firstEnumForFieldKnxSupport(boolean fieldValue)
-
enumsForFieldKnxSupport
public static List<SupportedPhysicalMedia> enumsForFieldKnxSupport(boolean fieldValue)
-
getDescription
public String getDescription()
-
firstEnumForFieldDescription
public static SupportedPhysicalMedia firstEnumForFieldDescription(String fieldValue)
-
enumsForFieldDescription
public static List<SupportedPhysicalMedia> enumsForFieldDescription(String fieldValue)
-
enumForValue
public static SupportedPhysicalMedia enumForValue(short value)
-
isDefined
public static Boolean isDefined(short value)
-
-