|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Schedule.Type>
com.ibm.pim.job.Schedule.Type
public static enum Schedule.Type
This is an enum type for schedule type.
Enum Constant Summary | |
---|---|
DAILY
schedule to run a job daily. |
|
HOURLY
schedule to run a job hourly. |
|
IMMEDIATE
schedule to run a job immediately. |
|
MINUTE
schedule to run a job in interval minutes. |
|
MONTHLY
schedule to run a job monthly. |
|
ONE_TIME
schedule to run a job for one time immediately. |
|
WEEKLY
schedule to run a job weekly. |
|
YEARLY
schedule to run a job yearly. |
Method Summary | |
---|---|
static Schedule.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Schedule.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 Schedule.Type IMMEDIATE
public static final Schedule.Type ONE_TIME
public static final Schedule.Type MINUTE
public static final Schedule.Type HOURLY
public static final Schedule.Type DAILY
public static final Schedule.Type WEEKLY
public static final Schedule.Type MONTHLY
public static final Schedule.Type YEARLY
Method Detail |
---|
public static final Schedule.Type[] values()
for(Schedule.Type c : Schedule.Type.values()) System.out.println(c);
public static Schedule.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 |