public enum ChillerState extends Enum<ChillerState>
| Enum Constant and Description |
|---|
CONTROLLING |
IDLE |
OFF |
OFFLINE |
SETPOINT |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static ChillerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChillerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChillerState OFFLINE
public static final ChillerState OFF
public static final ChillerState IDLE
public static final ChillerState CONTROLLING
public static final ChillerState SETPOINT
public static ChillerState[] values()
for (ChillerState c : ChillerState.values()) System.out.println(c);
public static ChillerState 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 getDescription()
Copyright © 2023 LSST. All rights reserved.