public enum AutomationActionFrequency extends Enum<AutomationActionFrequency>
| Enum Constant and Description |
|---|
DAILY |
HOURLY |
IMMEDIATELY |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static AutomationActionFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutomationActionFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomationActionFrequency IMMEDIATELY
public static final AutomationActionFrequency HOURLY
public static final AutomationActionFrequency DAILY
public static final AutomationActionFrequency WEEKLY
public static AutomationActionFrequency[] values()
for (AutomationActionFrequency c : AutomationActionFrequency.values()) System.out.println(c);
public static AutomationActionFrequency 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 © 2014–2019 Smartsheet. All rights reserved.