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