public enum VirtualMachineGuestState extends Enum<VirtualMachineGuestState>
| Enum Constant and Description |
|---|
notRunning |
resetting |
running |
shuttingDown |
standby |
unknown |
| Modifier and Type | Method and Description |
|---|---|
static VirtualMachineGuestState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualMachineGuestState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualMachineGuestState running
public static final VirtualMachineGuestState shuttingDown
public static final VirtualMachineGuestState resetting
public static final VirtualMachineGuestState standby
public static final VirtualMachineGuestState notRunning
public static final VirtualMachineGuestState unknown
public static VirtualMachineGuestState[] values()
for (VirtualMachineGuestState c : VirtualMachineGuestState.values()) System.out.println(c);
public static VirtualMachineGuestState 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 © 2011-2012. All Rights Reserved.