public static enum JobProxy.Status extends Enum<JobProxy.Status>
| Enum Constant and Description |
|---|
ABORTED |
COMPLETED |
FAILED |
PENDING |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static JobProxy.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobProxy.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobProxy.Status PENDING
public static final JobProxy.Status RUNNING
public static final JobProxy.Status COMPLETED
public static final JobProxy.Status FAILED
public static final JobProxy.Status ABORTED
public static JobProxy.Status[] values()
for (JobProxy.Status c : JobProxy.Status.values()) System.out.println(c);
public static JobProxy.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 © 2020 Open Foris. All rights reserved.