public enum AutomationActionType extends Enum<AutomationActionType>
| Enum Constant and Description |
|---|
APPROVAL_REQUEST_ACTION |
NOTIFICATION_ACTION |
UPDATE_REQUEST_ACTION |
| Modifier and Type | Method and Description |
|---|---|
static AutomationActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutomationActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomationActionType NOTIFICATION_ACTION
public static final AutomationActionType UPDATE_REQUEST_ACTION
public static final AutomationActionType APPROVAL_REQUEST_ACTION
public static AutomationActionType[] values()
for (AutomationActionType c : AutomationActionType.values()) System.out.println(c);
public static AutomationActionType 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.