public enum ExitStatus extends Enum<ExitStatus>
| Enum Constant and Description |
|---|
COMMAND_IDENTIFIER_NOT_FOUND |
EXECUTION_ERROR |
FAILED_SETUP_EXECUTION_ENVIRONMENT |
KILLED |
LOST |
NO_MACHINE_AVAILABLE |
NO_PERMISSION |
PROJECT_NOT_FOUND |
SUCCESS |
UNDEFINED |
UNEXPECTED_MACHINE_ERROR |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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 UNKNOWN
public static final ExitStatus SUCCESS
public static final ExitStatus EXECUTION_ERROR
public static final ExitStatus COMMAND_IDENTIFIER_NOT_FOUND
public static final ExitStatus UNEXPECTED_MACHINE_ERROR
public static final ExitStatus PROJECT_NOT_FOUND
public static final ExitStatus FAILED_SETUP_EXECUTION_ENVIRONMENT
public static final ExitStatus NO_PERMISSION
public static final ExitStatus NO_MACHINE_AVAILABLE
public static final ExitStatus KILLED
public static final ExitStatus LOST
public static final ExitStatus UNDEFINED
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 nullpublic String toString()
toString in class Enum<ExitStatus>Copyright © 2019. All rights reserved.