public enum CampaignType extends java.lang.Enum<CampaignType> implements EnumParam
| Enum Constant and Description |
|---|
ADAPTIVE_ADS |
MOBILE_APPS |
NORMAL |
PROMOTED_POSTS |
STORIES |
VK_APPS_MANAGED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static CampaignType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CampaignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="normal") public static final CampaignType NORMAL
@SerializedName(value="vk_apps_managed") public static final CampaignType VK_APPS_MANAGED
@SerializedName(value="mobile_apps") public static final CampaignType MOBILE_APPS
@SerializedName(value="promoted_posts") public static final CampaignType PROMOTED_POSTS
@SerializedName(value="adaptive_ads") public static final CampaignType ADAPTIVE_ADS
@SerializedName(value="stories") public static final CampaignType STORIES
public static CampaignType[] values()
for (CampaignType c : CampaignType.values()) System.out.println(c);
public static CampaignType 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 java.lang.String toString()
toString in class java.lang.Enum<CampaignType>