static enum BuildExecutor.Result extends Enum<BuildExecutor.Result>
Enum Constant and Description |
---|
BAD_RESPONSE |
DUP_ID |
OTHER_FAILURE |
REJECT |
SUCCESS |
TIMEOUT |
Modifier and Type | Method and Description |
---|---|
static BuildExecutor.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildExecutor.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildExecutor.Result SUCCESS
public static final BuildExecutor.Result REJECT
public static final BuildExecutor.Result TIMEOUT
public static final BuildExecutor.Result BAD_RESPONSE
public static final BuildExecutor.Result DUP_ID
public static final BuildExecutor.Result OTHER_FAILURE
public static BuildExecutor.Result[] values()
for (BuildExecutor.Result c : BuildExecutor.Result.values()) System.out.println(c);
public static BuildExecutor.Result 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 null