public static enum Types.OnBoot extends Enum<Types.OnBoot>
Enum Constant and Description |
---|
PERSIST
The VDIs contents are persistent
|
RESET
The VDI will be reset to the state it was in at the last clone
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.OnBoot |
valueOf(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(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 null