public static enum JobStatus.Tag extends Enum<JobStatus.Tag>
JobStatus
.Enum Constant and Description |
---|
COMPLETE
The asynchronous job has finished.
|
FAILED
The asynchronous job returned an error.
|
IN_PROGRESS
The asynchronous job is still in progress.
|
Modifier and Type | Method and Description |
---|---|
static JobStatus.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus.Tag IN_PROGRESS
public static final JobStatus.Tag COMPLETE
public static final JobStatus.Tag FAILED
public static JobStatus.Tag[] values()
for (JobStatus.Tag c : JobStatus.Tag.values()) System.out.println(c);
public static JobStatus.Tag 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