public enum AppleSimulatorState extends Enum<AppleSimulatorState>
| Enum Constant and Description |
|---|
BOOTED |
BOOTING |
CREATING |
SHUTDOWN |
SHUTTING_DOWN |
| Modifier and Type | Method and Description |
|---|---|
static AppleSimulatorState |
fromString(String s) |
static AppleSimulatorState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppleSimulatorState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppleSimulatorState CREATING
public static final AppleSimulatorState SHUTDOWN
public static final AppleSimulatorState BOOTING
public static final AppleSimulatorState BOOTED
public static final AppleSimulatorState SHUTTING_DOWN
public static AppleSimulatorState[] values()
for (AppleSimulatorState c : AppleSimulatorState.values()) System.out.println(c);
public static AppleSimulatorState 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 nullpublic static AppleSimulatorState fromString(String s)