public static enum ScheduleTrigger.TriggerType extends Enum<ScheduleTrigger.TriggerType>
Enum Constant and Description |
---|
DAILY |
HOURLY |
MINUTELY |
ONCE |
WEEKLY |
Modifier and Type | Method and Description |
---|---|
static ScheduleTrigger.TriggerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduleTrigger.TriggerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduleTrigger.TriggerType ONCE
public static final ScheduleTrigger.TriggerType MINUTELY
public static final ScheduleTrigger.TriggerType HOURLY
public static final ScheduleTrigger.TriggerType DAILY
public static final ScheduleTrigger.TriggerType WEEKLY
public static ScheduleTrigger.TriggerType[] values()
for (ScheduleTrigger.TriggerType c : ScheduleTrigger.TriggerType.values()) System.out.println(c);
public static ScheduleTrigger.TriggerType 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 (c) 2020, SAS Institute Inc., Cary, NC, USA