public enum AdRotationMode extends Enum<AdRotationMode>
Java class for AdRotationMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AdRotationMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="OPTIMIZE"/>
<enumeration value="ROTATE_FOREVER"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OPTIMIZE
Adwords will optimize your adgroups based on clicks or conversions based on your
bidding strategy
|
ROTATE_FOREVER
Ads in the adgroups should rotate evenly forever
|
UNKNOWN
Invalid type.
|
| Modifier and Type | Method and Description |
|---|---|
static AdRotationMode |
fromValue(String v) |
String |
value() |
static AdRotationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdRotationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdRotationMode UNKNOWN
public static final AdRotationMode OPTIMIZE
public static final AdRotationMode ROTATE_FOREVER
public static AdRotationMode[] values()
for (AdRotationMode c : AdRotationMode.values()) System.out.println(c);
public static AdRotationMode 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 AdRotationMode fromValue(String v)
Copyright © 2023. All rights reserved.