public static enum JobStatus.JobStatusEnum extends Enum<JobStatus.JobStatusEnum>
| Enum Constant and Description |
|---|
completed |
failed |
killed |
queued |
working |
| Modifier and Type | Method and Description |
|---|---|
static JobStatus.JobStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus.JobStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus.JobStatusEnum working
public static final JobStatus.JobStatusEnum failed
public static final JobStatus.JobStatusEnum completed
public static final JobStatus.JobStatusEnum killed
public static final JobStatus.JobStatusEnum queued
public static JobStatus.JobStatusEnum[] values()
for (JobStatus.JobStatusEnum c : JobStatus.JobStatusEnum.values()) System.out.println(c);
public static JobStatus.JobStatusEnum 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 © 2013–2020. All rights reserved.