public enum POBNativePlacementType extends java.lang.Enum<POBNativePlacementType>
| Enum Constant and Description |
|---|
ATOMIC
In the atomic unit of the content - IE in the article page or single image page
|
BELOW_ARTICLE
Recommendation widget, most commonly presented below the article content.
|
EXCHANGE
To be defined by the exchange
|
FEED
In the feed of content - for example as an item inside the organic feed/grid/listing/carousel.
|
OUTSIDE_CORE_CONTENT
Outside the core content - for example in the ads section on the right rail, as a banner-style placement near the content, etc.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Getter for placementType
|
static POBNativePlacementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POBNativePlacementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POBNativePlacementType FEED
public static final POBNativePlacementType ATOMIC
public static final POBNativePlacementType OUTSIDE_CORE_CONTENT
public static final POBNativePlacementType BELOW_ARTICLE
public static final POBNativePlacementType EXCHANGE
public static POBNativePlacementType[] values()
for (POBNativePlacementType c : POBNativePlacementType.values()) System.out.println(c);
public static POBNativePlacementType 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()