public enum Camera extends Enum<Camera>
| Enum Constant and Description |
|---|
AUXTEL |
COMCAM |
MAIN_CAMERA |
| Modifier and Type | Method and Description |
|---|---|
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 COMCAM
public static final Camera AUXTEL
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 nullCopyright © 2022 LSST. All rights reserved.