com.xensource.xenapi
public static enum Types.OnBoot extends java.lang.Enum<Types.OnBoot>
| Enum Constant and Description |
|---|
PERSIST
Standard behaviour.
|
RESET
When a VM containing this VDI is started, the contents of the VDI are reset to the state they were in when this flag was last set.
|
UNRECOGNIZED
The value does not belong to this enumeration
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Types.OnBoot |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.OnBoot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.OnBoot UNRECOGNIZED
public static final Types.OnBoot RESET
public static final Types.OnBoot PERSIST
public static Types.OnBoot[] values()
for (Types.OnBoot c : Types.OnBoot.values()) System.out.println(c);
public static Types.OnBoot 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 java.lang.String toString()
toString in class java.lang.Enum<Types.OnBoot>