public static enum StructureJob.State extends Enum<StructureJob.State>
| Enum Constant and Description |
|---|
FINISHED
The job has finished and will no longer execute
|
PENDING
The job has been scheduled and in the queue
|
RUNNING
The job is running now
|
| Modifier and Type | Method and Description |
|---|---|
static StructureJob.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureJob.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureJob.State PENDING
public static final StructureJob.State RUNNING
public static final StructureJob.State FINISHED
public static StructureJob.State[] values()
for (StructureJob.State c : StructureJob.State.values()) System.out.println(c);
public static StructureJob.State 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 © 2018 ALM Works. All Rights Reserved.