public enum TaskErrorCode extends Enum<TaskErrorCode>
| Enum Constant and Description |
|---|
PermanentFail |
RateLimited |
RerunnableFail |
| Modifier and Type | Field and Description |
|---|---|
static Set<TaskErrorCode> |
RERUNNABLE_ERROR_CODES |
| Modifier and Type | Method and Description |
|---|---|
static TaskErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskErrorCode RateLimited
public static final TaskErrorCode RerunnableFail
public static final TaskErrorCode PermanentFail
public static final Set<TaskErrorCode> RERUNNABLE_ERROR_CODES
public static TaskErrorCode[] values()
for (TaskErrorCode c : TaskErrorCode.values()) System.out.println(c);
public static TaskErrorCode 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 © 2020 org.mydotey. All rights reserved.