public static enum POBVideo.Linearity extends java.lang.Enum<POBVideo.Linearity>
| Enum Constant and Description |
|---|
LINEAR
"In-stream" or "linear" video refers to preroll, post-roll, or mid-roll video ads where
the user is forced to watch ad in order to see the video content
|
NON_LINEAR
"Overlay" or "non-linear" refer to ads that are shown on top of the video content.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static POBVideo.Linearity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POBVideo.Linearity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POBVideo.Linearity LINEAR
public static final POBVideo.Linearity NON_LINEAR
public static POBVideo.Linearity[] values()
for (POBVideo.Linearity c : POBVideo.Linearity.values()) System.out.println(c);
public static POBVideo.Linearity 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 nullpublic int getValue()