public enum RebPowerState extends Enum<RebPowerState>
| Enum Constant and Description |
|---|
LOW_POWER
Power per Reb is at the second level.
|
OFF
Power per Reb is below the lower limit.
|
ON
Power per Reb is at the first level.
|
OPERATIONAL
Power per Reb is above the third level.
|
TRIPPED
It indicates that the Power Supply channel for this Reb has tripped.
|
UNKNOWN
The initial power state or when the device cannot be read.
|
| Modifier and Type | Method and Description |
|---|---|
static RebPowerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RebPowerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RebPowerState UNKNOWN
public static final RebPowerState TRIPPED
public static final RebPowerState OFF
public static final RebPowerState ON
public static final RebPowerState LOW_POWER
public static final RebPowerState OPERATIONAL
public static RebPowerState[] values()
for (RebPowerState c : RebPowerState.values()) System.out.println(c);
public static RebPowerState 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 nullCopyright © 2023 LSST. All rights reserved.