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