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