public enum JobEventType extends Enum<JobEventType>
| Enum Constant and Description |
|---|
JOB_DISPATCHED
A sub-job was dispatched to a node.
|
JOB_ENDED
A job was completed and sent back to the client.
|
JOB_QUEUED
A new job was submitted to the JPPF driver queue.
|
JOB_RETURNED
A sub-job returned from a node.
|
JOB_UPDATED
The current number of tasks in a job was updated.
|
| Modifier and Type | Method and Description |
|---|---|
static JobEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobEventType JOB_QUEUED
public static final JobEventType JOB_ENDED
public static final JobEventType JOB_DISPATCHED
public static final JobEventType JOB_RETURNED
public static final JobEventType JOB_UPDATED
public static JobEventType[] values()
for (JobEventType c : JobEventType.values()) System.out.println(c);
public static JobEventType 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 © 2005-2012 JPPF Team.