public enum AdvertisingChannelType extends Enum<AdvertisingChannelType>
Java class for AdvertisingChannelType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AdvertisingChannelType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="SEARCH"/>
<enumeration value="DISPLAY"/>
<enumeration value="SHOPPING"/>
<enumeration value="MULTI_CHANNEL"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DISPLAY
Google Display Network only.
|
MULTI_CHANNEL
Universal app campaigns that target multiple channels across search, display,
youtube, etc.
|
SEARCH
Search Network.
|
SHOPPING
Shopping campaigns serve on the shopping property and on google.com search
results.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static AdvertisingChannelType |
fromValue(String v) |
String |
value() |
static AdvertisingChannelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdvertisingChannelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdvertisingChannelType UNKNOWN
public static final AdvertisingChannelType SEARCH
public static final AdvertisingChannelType DISPLAY
public static final AdvertisingChannelType SHOPPING
public static final AdvertisingChannelType MULTI_CHANNEL
public static AdvertisingChannelType[] values()
for (AdvertisingChannelType c : AdvertisingChannelType.values()) System.out.println(c);
public static AdvertisingChannelType 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 AdvertisingChannelType fromValue(String v)
Copyright © 2023. All rights reserved.