
public enum FocalPlaneState extends Enum<FocalPlaneState>
| Enum Constant and Description |
|---|
CLEARING
In the process of clearing the CCDs
|
IMAGE_WAIT
Readout finished, but waiting for 2-day store
|
INTEGRATING
Integrating
|
NEEDS_CLEAR
Needs a clear before any images can be taken
|
QUIESCENT
IDLE, but ready to take an image without a clear
|
READING_OUT
Reading out
|
ROW_SHIFT
Performing a row shift operation
|
| Modifier and Type | Method and Description |
|---|---|
static FocalPlaneState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FocalPlaneState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FocalPlaneState NEEDS_CLEAR
public static final FocalPlaneState CLEARING
public static final FocalPlaneState INTEGRATING
public static final FocalPlaneState READING_OUT
public static final FocalPlaneState QUIESCENT
public static final FocalPlaneState ROW_SHIFT
public static final FocalPlaneState IMAGE_WAIT
public static FocalPlaneState[] values()
for (FocalPlaneState c : FocalPlaneState.values()) System.out.println(c);
public static FocalPlaneState 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 © 2020 LSST. All rights reserved.