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