java.io.Serializable, java.lang.Comparable<ControllerError>public enum ControllerError extends java.lang.Enum<ControllerError>
| Enum Constant | Description |
|---|---|
EXECUTABLE_NOT_FOUND |
|
GAME_UNREACHABLE |
|
INVALID_EXECUTABLE |
|
PROCESS_START_FAILED |
| Modifier and Type | Method | Description |
|---|---|---|
static ControllerError |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ControllerError[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControllerError GAME_UNREACHABLE
public static final ControllerError INVALID_EXECUTABLE
public static final ControllerError EXECUTABLE_NOT_FOUND
public static final ControllerError PROCESS_START_FAILED
public static ControllerError[] values()
for (ControllerError c : ControllerError.values()) System.out.println(c);
public static ControllerError 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 nullCopyright © 2017–2018 Ocraft Project. All rights reserved.