public enum NDCrashError extends java.lang.Enum<NDCrashError>
| Enum Constant and Description |
|---|
error_already_initialized |
error_not_supported |
error_pipe |
error_service_start_failed |
error_signal |
error_socket_name |
error_thread |
error_wrong_process |
ok |
| Modifier and Type | Method and Description |
|---|---|
static NDCrashError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NDCrashError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NDCrashError ok
public static final NDCrashError error_already_initialized
public static final NDCrashError error_not_supported
public static final NDCrashError error_signal
public static final NDCrashError error_pipe
public static final NDCrashError error_thread
public static final NDCrashError error_socket_name
public static final NDCrashError error_wrong_process
public static final NDCrashError error_service_start_failed
public static NDCrashError[] values()
for (NDCrashError c : NDCrashError.values()) System.out.println(c);
public static NDCrashError 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