Enum Constant and Description |
---|
ALARM_FREEZE |
BAD_CONFIG |
BIND |
CPU |
EXIT_1 |
FAIL_SAFE_HALT |
HEALTH |
MEMORY |
MODIFIED |
NETWORK |
OK |
SIGNAL |
THREAD |
UNKNOWN |
UNKNOWN_ARGUMENT |
WATCHDOG_EXIT |
Modifier and Type | Method and Description |
---|---|
static ExitCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExitCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExitCode OK
public static final ExitCode EXIT_1
public static final ExitCode FAIL_SAFE_HALT
public static final ExitCode BAD_CONFIG
public static final ExitCode BIND
public static final ExitCode MODIFIED
public static final ExitCode MEMORY
public static final ExitCode THREAD
public static final ExitCode ALARM_FREEZE
public static final ExitCode HEALTH
public static final ExitCode NETWORK
public static final ExitCode WATCHDOG_EXIT
public static final ExitCode CPU
public static final ExitCode UNKNOWN
public static final ExitCode UNKNOWN_ARGUMENT
public static final ExitCode SIGNAL
public static ExitCode[] values()
for (ExitCode c : ExitCode.values()) System.out.println(c);
public static ExitCode 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