public enum POBNativeContextType extends java.lang.Enum<POBNativeContextType>
| Enum Constant and Description |
|---|
CONTENT_CENTRIC
Content-centric context such as newsfeed, article, image gallery, video gallery, or similar.
|
EXCHANGE
500+ To be defined by the exchange.
|
PRODUCT
Product context such as product listings, details, recommendations, reviews, or similar.
|
SOCIAL_CENTRIC
Social-centric context such as social network feed, email, chat, or similar.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Getter for the ContextType value
|
static POBNativeContextType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static POBNativeContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final POBNativeContextType CONTENT_CENTRIC
public static final POBNativeContextType SOCIAL_CENTRIC
public static final POBNativeContextType PRODUCT
public static final POBNativeContextType EXCHANGE
public static POBNativeContextType[] values()
for (POBNativeContextType c : POBNativeContextType.values()) System.out.println(c);
public static POBNativeContextType 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()