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