public static enum POBVideo.Placement extends java.lang.Enum<POBVideo.Placement>
| Enum Constant and Description |
|---|
IN_BANNER
Exists within a web banner that leverages the banner space to deliver a video experience as
opposed to another static or rich media format.
|
INTERSTITIAL
Covers the entire or a portion of screen area, but is always on screen while displayed (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static POBVideo.Placement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POBVideo.Placement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POBVideo.Placement IN_BANNER
public static final POBVideo.Placement INTERSTITIAL
public static POBVideo.Placement[] values()
for (POBVideo.Placement c : POBVideo.Placement.values()) System.out.println(c);
public static POBVideo.Placement 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()