public enum VagrantState extends java.lang.Enum<VagrantState>
| Enum Constant and Description |
|---|
ABORTED |
NOT_CREATED |
POWEROFF |
RUNNING |
SAVED |
| Modifier and Type | Method and Description |
|---|---|
static VagrantState |
fromStatusString(java.lang.String s) |
static java.lang.String[] |
getTransitionCommand(VagrantState newState) |
static VagrantState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VagrantState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VagrantState NOT_CREATED
public static final VagrantState POWEROFF
public static final VagrantState ABORTED
public static final VagrantState SAVED
public static final VagrantState RUNNING
public static VagrantState[] values()
for (VagrantState c : VagrantState.values()) System.out.println(c);
public static VagrantState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static VagrantState fromStatusString(java.lang.String s)
public static java.lang.String[] getTransitionCommand(VagrantState newState)