|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Types.OnCrashBehaviour>
com.xensource.xenapi.Types.OnCrashBehaviour
public static enum Types.OnCrashBehaviour
Enum Constant Summary | |
---|---|
COREDUMP_AND_DESTROY
record a coredump and then destroy the VM state |
|
COREDUMP_AND_RESTART
record a coredump and then restart the VM |
|
DESTROY
destroy the VM state |
|
PRESERVE
leave the crashed VM paused |
|
RENAME_RESTART
rename the crashed VM and start a new copy |
|
RESTART
restart the VM |
|
UNRECOGNIZED
The value does not belong to this enumeration |
Method Summary | |
---|---|
static Types.OnCrashBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Types.OnCrashBehaviour[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Types.OnCrashBehaviour UNRECOGNIZED
public static final Types.OnCrashBehaviour DESTROY
public static final Types.OnCrashBehaviour COREDUMP_AND_DESTROY
public static final Types.OnCrashBehaviour RESTART
public static final Types.OnCrashBehaviour COREDUMP_AND_RESTART
public static final Types.OnCrashBehaviour PRESERVE
public static final Types.OnCrashBehaviour RENAME_RESTART
Method Detail |
---|
public static Types.OnCrashBehaviour[] values()
for (Types.OnCrashBehaviour c : Types.OnCrashBehaviour.values()) System.out.println(c);
public static Types.OnCrashBehaviour 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |