public enum TaskCompletionStatus extends java.lang.Enum<TaskCompletionStatus>
| Enum Constant and Description |
|---|
FATAL_ERROR
A fatal error occurred during processing.
|
OBSOLETE
This task is not yet processed, but not needed anymore.
|
POSTPONE
This task cannot be processed, it must be redelivered.
|
RECOVERABLE_ERROR
A recoverable error occurred during processing.
|
SUCCESSFUL
Successfully processed.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskCompletionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskCompletionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskCompletionStatus SUCCESSFUL
public static final TaskCompletionStatus FATAL_ERROR
public static final TaskCompletionStatus RECOVERABLE_ERROR
public static final TaskCompletionStatus OBSOLETE
public static final TaskCompletionStatus POSTPONE
public static TaskCompletionStatus[] values()
for (TaskCompletionStatus c : TaskCompletionStatus.values()) System.out.println(c);
public static TaskCompletionStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null