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