public enum Controller extends Enum<Controller>
| Enum Constant and Description |
|---|
AuxCCS |
CCS |
DAQ |
OCS |
Playback |
Simulation |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode()
The one-letter code from the controller
|
static Controller |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Controller[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Controller OCS
public static final Controller CCS
public static final Controller AuxCCS
public static final Controller Simulation
public static final Controller Playback
public static final Controller DAQ
public static Controller[] values()
for (Controller c : Controller.values()) System.out.println(c);
public static Controller 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 getCode()
Copyright © 2022 LSST. All rights reserved.