public enum ScheduledJobState extends java.lang.Enum<ScheduledJobState>
| Enum Constant and Description |
|---|
Active
Job submitted to scheduler
|
Complete
Job complete
|
Unsubmitted
Job not yet submitted to scheduler
|
| Modifier and Type | Method and Description |
|---|---|
static ScheduledJobState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledJobState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledJobState Unsubmitted
public static final ScheduledJobState Active
public static final ScheduledJobState Complete
public static ScheduledJobState[] values()
for (ScheduledJobState c : ScheduledJobState.values()) System.out.println(c);
public static ScheduledJobState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null