public static enum ScheduleInfo.ScheduleType extends Enum<ScheduleInfo.ScheduleType>
Enum Constant and Description |
---|
CRON |
DAILY |
DATE |
HOURLY |
MONTHLY |
WEEKLY |
YEARLY |
Modifier and Type | Method and Description |
---|---|
static ScheduleInfo.ScheduleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduleInfo.ScheduleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduleInfo.ScheduleType DATE
public static final ScheduleInfo.ScheduleType HOURLY
public static final ScheduleInfo.ScheduleType DAILY
public static final ScheduleInfo.ScheduleType WEEKLY
public static final ScheduleInfo.ScheduleType MONTHLY
public static final ScheduleInfo.ScheduleType YEARLY
public static final ScheduleInfo.ScheduleType CRON
public static ScheduleInfo.ScheduleType[] values()
for (ScheduleInfo.ScheduleType c : ScheduleInfo.ScheduleType.values()) System.out.println(c);
public static ScheduleInfo.ScheduleType 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 © 2017 The Apache Software Foundation. All rights reserved.