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