Enum VideoAdEvent.Event
- java.lang.Object
-
- java.lang.Enum<VideoAdEvent.Event>
-
- org.prebid.mobile.rendering.video.VideoAdEvent.Event
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<VideoAdEvent.Event>
- Enclosing class:
- VideoAdEvent
public static enum VideoAdEvent.Event extends java.lang.Enum<VideoAdEvent.Event>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VideoAdEvent.EventvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static VideoAdEvent.Event[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AD_CREATIVEVIEW
public static final VideoAdEvent.Event AD_CREATIVEVIEW
-
AD_START
public static final VideoAdEvent.Event AD_START
-
AD_FIRSTQUARTILE
public static final VideoAdEvent.Event AD_FIRSTQUARTILE
-
AD_MIDPOINT
public static final VideoAdEvent.Event AD_MIDPOINT
-
AD_THIRDQUARTILE
public static final VideoAdEvent.Event AD_THIRDQUARTILE
-
AD_COMPLETE
public static final VideoAdEvent.Event AD_COMPLETE
-
AD_MUTE
public static final VideoAdEvent.Event AD_MUTE
-
AD_UNMUTE
public static final VideoAdEvent.Event AD_UNMUTE
-
AD_PAUSE
public static final VideoAdEvent.Event AD_PAUSE
-
AD_REWIND
public static final VideoAdEvent.Event AD_REWIND
-
AD_RESUME
public static final VideoAdEvent.Event AD_RESUME
-
AD_FULLSCREEN
public static final VideoAdEvent.Event AD_FULLSCREEN
-
AD_EXITFULLSCREEN
public static final VideoAdEvent.Event AD_EXITFULLSCREEN
-
AD_EXPAND
public static final VideoAdEvent.Event AD_EXPAND
-
AD_COLLAPSE
public static final VideoAdEvent.Event AD_COLLAPSE
-
AD_ACCEPTINVITATION
public static final VideoAdEvent.Event AD_ACCEPTINVITATION
-
AD_ACCEPTINVITATIONLINEAR
public static final VideoAdEvent.Event AD_ACCEPTINVITATIONLINEAR
-
AD_CLOSELINEAR
public static final VideoAdEvent.Event AD_CLOSELINEAR
-
AD_CLOSE
public static final VideoAdEvent.Event AD_CLOSE
-
AD_SKIP
public static final VideoAdEvent.Event AD_SKIP
-
AD_ERROR
public static final VideoAdEvent.Event AD_ERROR
-
AD_IMPRESSION
public static final VideoAdEvent.Event AD_IMPRESSION
-
AD_CLICK
public static final VideoAdEvent.Event AD_CLICK
-
-
Method Detail
-
values
public static VideoAdEvent.Event[] 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 (VideoAdEvent.Event c : VideoAdEvent.Event.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VideoAdEvent.Event valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-