public static enum JobDeleteResponse.Status extends Enum<JobDeleteResponse.Status>
| Enum Constant and Description |
|---|
FORBIDDEN |
JOB_NOT_FOUND |
OK |
STILL_IN_USE |
| Modifier and Type | Method and Description |
|---|---|
static JobDeleteResponse.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobDeleteResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobDeleteResponse.Status OK
public static final JobDeleteResponse.Status STILL_IN_USE
public static final JobDeleteResponse.Status JOB_NOT_FOUND
public static final JobDeleteResponse.Status FORBIDDEN
public static JobDeleteResponse.Status[] values()
for (JobDeleteResponse.Status c : JobDeleteResponse.Status.values()) System.out.println(c);
public static JobDeleteResponse.Status 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 © 2019. All rights reserved.