public enum CameraAlarmState extends Enum<CameraAlarmState>
| Modifier and Type | Method and Description |
|---|---|
static CameraAlarmState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CameraAlarmState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraAlarmState NOMINAL
public static final CameraAlarmState WARNING
public static final CameraAlarmState ALARM
public static CameraAlarmState[] values()
for (CameraAlarmState c : CameraAlarmState.values()) System.out.println(c);
public static CameraAlarmState 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 © 2021 LSST. All rights reserved.