public static enum Types.OnCrashBehaviour extends Enum<Types.OnCrashBehaviour>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
static Types.OnCrashBehaviour |
valueOf(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.
|
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
public static Types.OnCrashBehaviour[] values()
for (Types.OnCrashBehaviour c : Types.OnCrashBehaviour.values()) System.out.println(c);
public static Types.OnCrashBehaviour 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