Package com.inteliqua.rest.flow.payload
Enum TriggerPoint
- java.lang.Object
-
- java.lang.Enum<TriggerPoint>
-
- com.inteliqua.rest.flow.payload.TriggerPoint
-
- All Implemented Interfaces:
Serializable,Comparable<TriggerPoint>
public enum TriggerPoint extends Enum<TriggerPoint>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TriggerPointvalueOf(String name)Returns the enum constant of this type with the specified name.static TriggerPoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CORE_API_CUSTOMER_CREATION
public static final TriggerPoint CORE_API_CUSTOMER_CREATION
-
CORE_API_CUSTOMER_UPDATE
public static final TriggerPoint CORE_API_CUSTOMER_UPDATE
-
CORE_API_MEMBER_ACTIVATION
public static final TriggerPoint CORE_API_MEMBER_ACTIVATION
-
CORE_API_MEMBER_CREATION
public static final TriggerPoint CORE_API_MEMBER_CREATION
-
CORE_API_MEMBER_UPDATE
public static final TriggerPoint CORE_API_MEMBER_UPDATE
-
CORE_API_MEMBER_ASSIGN_CARD
public static final TriggerPoint CORE_API_MEMBER_ASSIGN_CARD
-
CORE_API_MEMBER_COUPON_ACTION
public static final TriggerPoint CORE_API_MEMBER_COUPON_ACTION
-
CORE_API_MEMBER_COUPON_CONTEXT_ACTION
public static final TriggerPoint CORE_API_MEMBER_COUPON_CONTEXT_ACTION
-
CORE_API_MEMBER_CSI_SUBMIT
public static final TriggerPoint CORE_API_MEMBER_CSI_SUBMIT
-
CORE_API_CREATE_TICKET
public static final TriggerPoint CORE_API_CREATE_TICKET
-
QC_API_ADHOC_POINTS
public static final TriggerPoint QC_API_ADHOC_POINTS
-
QC_API_CREATE_TICKET
public static final TriggerPoint QC_API_CREATE_TICKET
-
QC_API_UPDATE_TICKET
public static final TriggerPoint QC_API_UPDATE_TICKET
-
QC_API_UPDATE_COUPON
public static final TriggerPoint QC_API_UPDATE_COUPON
-
QC_API_ASSIGN_COUPON
public static final TriggerPoint QC_API_ASSIGN_COUPON
-
CORE_API_LOYALTY_TRANSACTION_CREATE
public static final TriggerPoint CORE_API_LOYALTY_TRANSACTION_CREATE
-
CORE_API_LOYALTY_TRANSACTION_COUPON_FLOW
public static final TriggerPoint CORE_API_LOYALTY_TRANSACTION_COUPON_FLOW
-
CORE_API_COUPON_UPDATE
public static final TriggerPoint CORE_API_COUPON_UPDATE
-
CUSTOM_API_MEMBER_REGISTRATION
public static final TriggerPoint CUSTOM_API_MEMBER_REGISTRATION
-
CUSTOM_API_CUSTOMER_REGISTRATION
public static final TriggerPoint CUSTOM_API_CUSTOMER_REGISTRATION
-
QC_API_REMIND_COUPON
public static final TriggerPoint QC_API_REMIND_COUPON
-
CUSTOM_API_LOYALTY_TRANSACTION
public static final TriggerPoint CUSTOM_API_LOYALTY_TRANSACTION
-
QC_ADHOC_POINTS_CUSTOM_LOYALTY_IMPLEMENTER
public static final TriggerPoint QC_ADHOC_POINTS_CUSTOM_LOYALTY_IMPLEMENTER
-
QC_API_UPDATE_MEMBER
public static final TriggerPoint QC_API_UPDATE_MEMBER
-
QC_CAMPAIGN_ADHOC_POINTS
public static final TriggerPoint QC_CAMPAIGN_ADHOC_POINTS
-
QC_API_ANONYMIZE_CUSTOMER
public static final TriggerPoint QC_API_ANONYMIZE_CUSTOMER
-
QC_API_DEACTIVATE_MEMBER
public static final TriggerPoint QC_API_DEACTIVATE_MEMBER
-
QC_API_ACTIVATE_MEMBER
public static final TriggerPoint QC_API_ACTIVATE_MEMBER
-
CORE_API_MERCHANT_USER_CREATION
public static final TriggerPoint CORE_API_MERCHANT_USER_CREATION
-
CORE_API_MERCHANT_UPDATE
public static final TriggerPoint CORE_API_MERCHANT_UPDATE
-
CORE_API_MERCHANT_COUPONSET_CREATION
public static final TriggerPoint CORE_API_MERCHANT_COUPONSET_CREATION
-
CORE_API_MERCHANT_COUPONSET_UPDATE
public static final TriggerPoint CORE_API_MERCHANT_COUPONSET_UPDATE
-
CORE_API_TIER_REEVALUATION
public static final TriggerPoint CORE_API_TIER_REEVALUATION
-
ADHOC_LOYALTY_TRANSACTION_FLOW_EVENT
public static final TriggerPoint ADHOC_LOYALTY_TRANSACTION_FLOW_EVENT
-
-
Method Detail
-
values
public static TriggerPoint[] 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 (TriggerPoint c : TriggerPoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TriggerPoint 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
-
-