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