|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ScheduleStatus.Type>
com.ibm.pim.job.ScheduleStatus.Type
public static enum ScheduleStatus.Type
This is an enum type for job status.
Enum Constant Summary | |
---|---|
COMPLETED
indicate job is completed. |
|
ERROR_COMPLETING
indicate an error occurred while completing a job. |
|
NOT_STARTED
indicate job is not started. |
|
RUNNING
indicate job is still running. |
|
SYSTEM_ERROR
indicate an system error occurs. |
Method Summary | |
---|---|
static ScheduleStatus.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ScheduleStatus.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ScheduleStatus.Type COMPLETED
public static final ScheduleStatus.Type RUNNING
public static final ScheduleStatus.Type SYSTEM_ERROR
public static final ScheduleStatus.Type ERROR_COMPLETING
public static final ScheduleStatus.Type NOT_STARTED
Method Detail |
---|
public static final ScheduleStatus.Type[] values()
for(ScheduleStatus.Type c : ScheduleStatus.Type.values()) System.out.println(c);
public static ScheduleStatus.Type 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |