public enum AdGroupType extends Enum<AdGroupType>
Java class for AdGroupType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AdGroupType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="SEARCH_STANDARD"/>
<enumeration value="SEARCH_DYNAMIC_ADS"/>
<enumeration value="DISPLAY_STANDARD"/>
<enumeration value="SHOPPING_PRODUCT_ADS"/>
<enumeration value="SHOPPING_SHOWCASE_ADS"/>
<enumeration value="SHOPPING_GOAL_OPTIMIZED_ADS"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DISPLAY_STANDARD
Default AdGroup type for Display Campaigns
|
SEARCH_DYNAMIC_ADS
AdGroup type for Dynamic Search Ads campaigns.
|
SEARCH_STANDARD
Default AdGroup type for Search Campaigns
|
SHOPPING_GOAL_OPTIMIZED_ADS
Ad group type for Smart Shopping Campaigns.
|
SHOPPING_PRODUCT_ADS
Default AdGroup type for Shopping Campaigns serving standard products ads.
|
SHOPPING_SHOWCASE_ADS
AdGroups limited to serving Showcase/Merchant ads in shopping results.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static AdGroupType |
fromValue(String v) |
String |
value() |
static AdGroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdGroupType UNKNOWN
public static final AdGroupType SEARCH_STANDARD
public static final AdGroupType SEARCH_DYNAMIC_ADS
public static final AdGroupType DISPLAY_STANDARD
public static final AdGroupType SHOPPING_PRODUCT_ADS
public static final AdGroupType SHOPPING_SHOWCASE_ADS
public static final AdGroupType SHOPPING_GOAL_OPTIMIZED_ADS
public static AdGroupType[] values()
for (AdGroupType c : AdGroupType.values()) System.out.println(c);
public static AdGroupType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static AdGroupType fromValue(String v)
Copyright © 2023. All rights reserved.