public enum ExitStatus extends Enum<ExitStatus>
| Enum Constant and Description |
|---|
BUILD_REPORT_ERROR |
I_O_ERROR |
OK |
OPTIONS_PARSING_ERROR |
REQUIREMENTS_INPUT_PARSE_ERROR |
URI_BUILD_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static ExitStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExitStatus OK
public static final ExitStatus OPTIONS_PARSING_ERROR
public static final ExitStatus REQUIREMENTS_INPUT_PARSE_ERROR
public static final ExitStatus BUILD_REPORT_ERROR
public static final ExitStatus I_O_ERROR
public static final ExitStatus URI_BUILD_ERROR
public static ExitStatus[] values()
for (ExitStatus c : ExitStatus.values()) System.out.println(c);
public static ExitStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.