public static enum Launch.ShutdownOptions extends java.lang.Enum<Launch.ShutdownOptions>
Options defining the behavior on Launch failure
Enum Constant and Description |
---|
DONT_TERMINATE_JVM
Needed when started from RunJAVA, using System.exit(1)
would takedown the Domino server
|
SHUTDOWN_ON_FAILURE
Used when launched standalone, triggers a System.exit(1)
on launch failure
|
Modifier and Type | Method and Description |
---|---|
static Launch.ShutdownOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Launch.ShutdownOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Launch.ShutdownOptions SHUTDOWN_ON_FAILURE
public static final Launch.ShutdownOptions DONT_TERMINATE_JVM
public static Launch.ShutdownOptions[] values()
for (Launch.ShutdownOptions c : Launch.ShutdownOptions.values()) System.out.println(c);
public static Launch.ShutdownOptions 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