public enum Camera extends Enum<Camera>
| Enum Constant and Description |
|---|
AUXTEL |
COMCAM |
MAIN_CAMERA |
| Modifier and Type | Method and Description |
|---|---|
String |
cameraName() |
String |
getCscName()
The corresponding CSC name, as used for communication with OCS.
|
static Camera |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Camera[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Camera MAIN_CAMERA
public static final Camera AUXTEL
public static final Camera COMCAM
public static Camera[] values()
for (Camera c : Camera.values()) System.out.println(c);
public static Camera 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 getCscName()
public String cameraName()
Copyright © 2023 LSST. All rights reserved.