public enum TuneEventType extends Enum<TuneEventType>
Enum Constant and Description |
---|
APP_OPENED_BY_URL |
CLEAR_PROFILE |
CLEAR_VARIABLE |
EVENT |
LOCAL_NOTIFICATION |
PAGEVIEW |
PRODUCT |
PUSH_NOTIFICATION |
SESSION |
SOCIAL_SHARING |
TRACER |
TRANSACTION |
Modifier and Type | Method and Description |
---|---|
static TuneEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TuneEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TuneEventType EVENT
public static final TuneEventType SESSION
public static final TuneEventType PAGEVIEW
public static final TuneEventType TRACER
public static final TuneEventType PUSH_NOTIFICATION
public static final TuneEventType LOCAL_NOTIFICATION
public static final TuneEventType SOCIAL_SHARING
public static final TuneEventType TRANSACTION
public static final TuneEventType PRODUCT
public static final TuneEventType APP_OPENED_BY_URL
public static final TuneEventType CLEAR_PROFILE
public static final TuneEventType CLEAR_VARIABLE
public static TuneEventType[] values()
for (TuneEventType c : TuneEventType.values()) System.out.println(c);
public static TuneEventType 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 null