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