public enum DoorChannel extends Enum<DoorChannel>
| Enum Constant and Description |
|---|
AIR_OUTLET_TEMP
Air supply outlet temperature.
|
B4_ALARM
Probe B4 alarm.
|
CLOCK_ALARM
Clock board alarm.
|
CLOCK_DAY
Door clock day.
|
CLOCK_HOUR
Door clock hour.
|
CLOCK_MINUTE
Door clock minute.
|
CLOCK_MONTH
Door clock month.
|
CLOCK_YEAR
Door clock year.
|
DOOR_OPEN
The unit door is open.
|
FAN1_ALARM
Fan 1 speed alarm.
|
FAN1_SPEED
Speed of fan 1 in RPM.
|
FAN2_ALARM
Fan 1 speed alarm.
|
FAN2_SPEED
Speed of fan 1 in RPM.
|
FAN3_ALARM
Fan 1 speed alarm.
|
FAN3_SPEED
Speed of fan 1 in RPM.
|
FAN4_ALARM
Fan 1 speed alarm.
|
FAN4_SPEED
Speed of fan 1 in RPM.
|
FAN5_ALARM
Fan 1 speed alarm.
|
FAN5_SPEED
Speed of fan 1 in RPM.
|
GENERAL_ALARM
General alarm output.
|
HIGH_AIR_TEMP
High air temperature alarm.
|
HIGH_FAN_PRESSURE
Fan high pressure alarm.
|
HIGH_ROOM_TEMP
High room temperature.
|
HIGH_SERVER_OUTLET_TEMP
High server outlet temp.
|
HIGH_WATER_TEMP
High water temperature alarm.
|
LOW_AIR_SUPPLY_TEMP
Low temperature in the air supply.
|
LOW_ROOM_TEMP
Low room temperature.
|
LOW_WATER_TEMP
Low water temperature alarm.
|
RETURN_WATER_TEMP
The return-water coil temperature.
|
ROOM_TEMP
The room temperature.
|
SERVER_OUTLET_AIR_TEMP
The server outlet air temperature.
|
UNIT_STATE
Unit state: 0 for off, 1 for on.
|
VALVE_OUTPUT
Valve output signal expressed as a percentage.
|
WATER_DETECTED
Water detected (condensation?) alarm.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getKey()
Gets the trending key used to identify the channel.
|
int |
getRegister()
Gets the Modbus register number.
|
DoorChannelType |
getType()
Gets the channel type.
|
static Optional<DoorChannel> |
parse(String key)
Converts a trending key string into the corresponding channel.
|
static DoorChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoorChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoorChannel AIR_OUTLET_TEMP
public static final DoorChannel RETURN_WATER_TEMP
public static final DoorChannel VALVE_OUTPUT
public static final DoorChannel ROOM_TEMP
public static final DoorChannel SERVER_OUTLET_AIR_TEMP
public static final DoorChannel FAN1_SPEED
public static final DoorChannel FAN2_SPEED
public static final DoorChannel FAN3_SPEED
public static final DoorChannel FAN4_SPEED
public static final DoorChannel FAN5_SPEED
public static final DoorChannel CLOCK_DAY
public static final DoorChannel CLOCK_MONTH
public static final DoorChannel CLOCK_YEAR
public static final DoorChannel CLOCK_HOUR
public static final DoorChannel CLOCK_MINUTE
public static final DoorChannel HIGH_AIR_TEMP
public static final DoorChannel HIGH_WATER_TEMP
public static final DoorChannel LOW_WATER_TEMP
public static final DoorChannel UNIT_STATE
public static final DoorChannel WATER_DETECTED
public static final DoorChannel GENERAL_ALARM
public static final DoorChannel CLOCK_ALARM
public static final DoorChannel HIGH_ROOM_TEMP
public static final DoorChannel LOW_ROOM_TEMP
public static final DoorChannel FAN1_ALARM
public static final DoorChannel FAN2_ALARM
public static final DoorChannel FAN3_ALARM
public static final DoorChannel FAN4_ALARM
public static final DoorChannel FAN5_ALARM
public static final DoorChannel HIGH_SERVER_OUTLET_TEMP
public static final DoorChannel HIGH_FAN_PRESSURE
public static final DoorChannel B4_ALARM
public static final DoorChannel LOW_AIR_SUPPLY_TEMP
public static final DoorChannel DOOR_OPEN
public static DoorChannel[] values()
for (DoorChannel c : DoorChannel.values()) System.out.println(c);
public static DoorChannel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getKey()
public DoorChannelType getType()
public int getRegister()
public static Optional<DoorChannel> parse(String key)
key - The trending key.Copyright © 2021 LSST. All rights reserved.