Package com.onslip360
Enum API.TriggerAction.Type
- java.lang.Object
-
- java.lang.Enum<API.TriggerAction.Type>
-
- com.onslip360.API.TriggerAction.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<API.TriggerAction.Type>
- Enclosing class:
- API.TriggerAction
public static enum API.TriggerAction.Type extends Enum<API.TriggerAction.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
AUTO_CLOSE_BATCH
DIGITAL_RECEIPT
DM_CAMPAIGN
EMAIL
ERP_INTEGRATION
REPORT
WEBHOOK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.TriggerAction.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.TriggerAction.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO_CLOSE_BATCH
public static final API.TriggerAction.Type AUTO_CLOSE_BATCH
-
ERP_INTEGRATION
public static final API.TriggerAction.Type ERP_INTEGRATION
-
REPORT
public static final API.TriggerAction.Type REPORT
-
WEBHOOK
public static final API.TriggerAction.Type WEBHOOK
-
DIGITAL_RECEIPT
public static final API.TriggerAction.Type DIGITAL_RECEIPT
-
DM_CAMPAIGN
public static final API.TriggerAction.Type DM_CAMPAIGN
-
EMAIL
public static final API.TriggerAction.Type EMAIL
-
__
public static final API.TriggerAction.Type __
-
-
Method Detail
-
values
public static API.TriggerAction.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (API.TriggerAction.Type c : API.TriggerAction.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.TriggerAction.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-