public enum EfficiencyTargetType extends Enum<EfficiencyTargetType>
Java class for EfficiencyTargetType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EfficiencyTargetType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="NONE"/>
<enumeration value="CPA_LESS_THAN_OR_EQUAL_TO"/>
<enumeration value="CPC_LESS_THAN_OR_EQUAL_TO"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CPA_LESS_THAN_OR_EQUAL_TO
An efficiency target that aims for average CPA over the runtime of the
performance target to be less than or equal to some value.
|
CPC_LESS_THAN_OR_EQUAL_TO
An efficiency target that aims for average CPC over the runtime of the
performance target to be less than or equal to some value.
|
NONE
A value that is used to clear an efficiency target when it has already been set.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static EfficiencyTargetType |
fromValue(String v) |
String |
value() |
static EfficiencyTargetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EfficiencyTargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EfficiencyTargetType UNKNOWN
public static final EfficiencyTargetType NONE
public static final EfficiencyTargetType CPA_LESS_THAN_OR_EQUAL_TO
public static final EfficiencyTargetType CPC_LESS_THAN_OR_EQUAL_TO
public static EfficiencyTargetType[] values()
for (EfficiencyTargetType c : EfficiencyTargetType.values()) System.out.println(c);
public static EfficiencyTargetType 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 EfficiencyTargetType fromValue(String v)
Copyright © 2023. All rights reserved.