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