Enum Constant and Description |
---|
BUILD_FAILED |
NOT_DOCASCODE_REPO |
OK |
RUNTIME_ERROR |
Modifier and Type | Method and Description |
---|---|
int |
toInt() |
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 RUNTIME_ERROR
public static final ExitCode BUILD_FAILED
public static final ExitCode NOT_DOCASCODE_REPO
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 nullpublic int toInt()