
public static enum DemoSubsystem.DemoState extends Enum<DemoSubsystem.DemoState>
| Modifier and Type | Method and Description |
|---|---|
static DemoSubsystem.DemoState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DemoSubsystem.DemoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DemoSubsystem.DemoState IDLE
public static final DemoSubsystem.DemoState BUSY
public static DemoSubsystem.DemoState[] values()
for (DemoSubsystem.DemoState c : DemoSubsystem.DemoState.values()) System.out.println(c);
public static DemoSubsystem.DemoState 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.