public enum TriggerEventType extends java.lang.Enum<TriggerEventType>
Enum Constant and Description |
---|
USER_CONVERTED
The user has taken an action that is significant to the application such as making a purchase.
|
USER_NOTIFIED
The user has been notified of a trigger event, e.g.
|
USER_SELECTED
The user chose to find out more information after being notified of a trigger event.
|
Modifier and Type | Method and Description |
---|---|
static TriggerEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TriggerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerEventType USER_NOTIFIED
public static final TriggerEventType USER_SELECTED
public static final TriggerEventType USER_CONVERTED
public static TriggerEventType[] values()
for (TriggerEventType c : TriggerEventType.values()) System.out.println(c);
public static TriggerEventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null