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