public static enum ScheduledTime.FREQ extends Enum<ScheduledTime.FREQ>
Enum Constant and Description |
---|
DAILY |
HOURLY |
MINUTE |
MONTHLY |
NEVER |
WEEKLY |
YEARLY |
Modifier and Type | Method and Description |
---|---|
static ScheduledTime.FREQ |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledTime.FREQ[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledTime.FREQ NEVER
public static final ScheduledTime.FREQ MINUTE
public static final ScheduledTime.FREQ HOURLY
public static final ScheduledTime.FREQ DAILY
public static final ScheduledTime.FREQ MONTHLY
public static final ScheduledTime.FREQ YEARLY
public static final ScheduledTime.FREQ WEEKLY
public static ScheduledTime.FREQ[] values()
for (ScheduledTime.FREQ c : ScheduledTime.FREQ.values()) System.out.println(c);
public static ScheduledTime.FREQ 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 2010-2018 Grey Software (Yusef Badri). All Rights Reserved.