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