public enum EventType extends Enum<EventType>
| Enum Constant and Description |
|---|
CLOSE |
CONTROL |
CUSTOM |
FIRST_OPEN |
IN_APP_MESSAGE_DISPLAY |
IN_APP_MESSAGE_EXPIRATION |
IN_APP_MESSAGE_RESOLUTION |
LOCATION |
OPEN |
PUSH_BODY |
REGION |
RICH_DELETE |
RICH_DELIVERY |
RICH_READ |
SCREEN_VIEWED |
SEND |
TAG_CHANGE |
UNINSTALL |
| Modifier and Type | Method and Description |
|---|---|
static EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType OPEN
public static final EventType CLOSE
public static final EventType CUSTOM
public static final EventType LOCATION
public static final EventType SEND
public static final EventType TAG_CHANGE
public static final EventType FIRST_OPEN
public static final EventType UNINSTALL
public static final EventType PUSH_BODY
public static final EventType REGION
public static final EventType RICH_DELETE
public static final EventType RICH_DELIVERY
public static final EventType RICH_READ
public static final EventType IN_APP_MESSAGE_EXPIRATION
public static final EventType IN_APP_MESSAGE_RESOLUTION
public static final EventType CONTROL
public static final EventType SCREEN_VIEWED
public static final EventType IN_APP_MESSAGE_DISPLAY
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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 © 2016. All rights reserved.