public static enum JavaRuntimeLauncher.Exit extends java.lang.Enum<JavaRuntimeLauncher.Exit>
| Enum Constant and Description |
|---|
FROZEN
Did not finish in the required amount of time
|
NORMAL
Exited normally.
|
REQUESTED
Killed by user
|
RETURN_NOT_ZERO
exited with a non zero return value
|
| Modifier and Type | Method and Description |
|---|---|
static JavaRuntimeLauncher.Exit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaRuntimeLauncher.Exit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaRuntimeLauncher.Exit NORMAL
public static final JavaRuntimeLauncher.Exit FROZEN
public static final JavaRuntimeLauncher.Exit REQUESTED
public static final JavaRuntimeLauncher.Exit RETURN_NOT_ZERO
public static JavaRuntimeLauncher.Exit[] values()
for (JavaRuntimeLauncher.Exit c : JavaRuntimeLauncher.Exit.values()) System.out.println(c);
public static JavaRuntimeLauncher.Exit 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 null