public static enum Types.OnNormalExit extends Enum<Types.OnNormalExit>
Enum Constant and Description |
---|
DESTROY
destroy the VM state
|
RESTART
restart the VM
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.OnNormalExit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.OnNormalExit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.OnNormalExit UNRECOGNIZED
public static final Types.OnNormalExit DESTROY
public static final Types.OnNormalExit RESTART
public static Types.OnNormalExit[] values()
for (Types.OnNormalExit c : Types.OnNormalExit.values()) System.out.println(c);
public static Types.OnNormalExit 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