public enum TrackingType extends java.lang.Enum<TrackingType>
Enum Constant and Description |
---|
CLICK_TRACKING |
COMPLETE |
CREATIVE_VIEW |
EXIT_FULLSCREEN |
FIRST_QUARTILE |
FULLSCREEN |
MIDPOINT |
PAUSE |
PROGRESS |
RESUME |
SKIP |
START |
THIRD_QUARTILE |
UNSUPPORTED |
Modifier and Type | Method and Description |
---|---|
static TrackingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrackingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingType UNSUPPORTED
public static final TrackingType CREATIVE_VIEW
public static final TrackingType START
public static final TrackingType FIRST_QUARTILE
public static final TrackingType MIDPOINT
public static final TrackingType THIRD_QUARTILE
public static final TrackingType COMPLETE
public static final TrackingType PROGRESS
public static final TrackingType PAUSE
public static final TrackingType RESUME
public static final TrackingType SKIP
public static final TrackingType CLICK_TRACKING
public static final TrackingType FULLSCREEN
public static final TrackingType EXIT_FULLSCREEN
public static TrackingType[] values()
for (TrackingType c : TrackingType.values()) System.out.println(c);
public static TrackingType 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