public enum VolumeGoalType extends Enum<VolumeGoalType>
Java class for VolumeGoalType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VolumeGoalType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="MAXIMIZE_CONVERSIONS"/>
<enumeration value="MAXIMIZE_CLICKS"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MAXIMIZE_CLICKS
A volume goal that indicates that the performance target is meant to display
progress in terms of maximizing clicks.
|
MAXIMIZE_CONVERSIONS
A volume goal that indicates that the performance target is meant to display
progress in terms of maximizing conversions.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static VolumeGoalType |
fromValue(String v) |
String |
value() |
static VolumeGoalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VolumeGoalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolumeGoalType UNKNOWN
public static final VolumeGoalType MAXIMIZE_CONVERSIONS
public static final VolumeGoalType MAXIMIZE_CLICKS
public static VolumeGoalType[] values()
for (VolumeGoalType c : VolumeGoalType.values()) System.out.println(c);
public static VolumeGoalType 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 VolumeGoalType fromValue(String v)
Copyright © 2023. All rights reserved.