static enum BuildExecutor.Result extends Enum<BuildExecutor.Result>
| Enum Constant and Description |
|---|
BAD_RESPONSEBad response received |
DUP_IDDuplicate build ID |
NO_NETDBA hop's RouterInfo was not available in the local netdb |
NO_TUNNELSNo paired or exploratory tunnel was available to send the build |
OTHER_FAILUREOther failure |
REJECTBuild was rejected |
SKIPPEDBuild configuration skipped by local policy before dispatch |
SUCCESSBuild succeeded |
TIMEOUTBuild timed out |
| 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 BAD_RESPONSE
public static final BuildExecutor.Result DUP_ID
public static final BuildExecutor.Result NO_NETDB
public static final BuildExecutor.Result NO_TUNNELS
public static final BuildExecutor.Result OTHER_FAILURE
public static final BuildExecutor.Result REJECT
public static final BuildExecutor.Result SKIPPED
public static final BuildExecutor.Result SUCCESS
public static final BuildExecutor.Result TIMEOUT
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 nullpublic static BuildExecutor.Result[] values()
for (BuildExecutor.Result c : BuildExecutor.Result.values()) System.out.println(c);