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