public enum FrequencyCapBehavior extends Enum<FrequencyCapBehavior>
Java class for FrequencyCapBehavior.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FrequencyCapBehavior">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TURN_ON"/>
<enumeration value="TURN_OFF"/>
<enumeration value="DEFER"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFER
Defer frequency cap decisions to the next ad rule in priority order.
|
TURN_OFF
Turn off all frequency caps.
|
TURN_ON
Turn on at least one of the frequency caps.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static FrequencyCapBehavior |
fromValue(String v) |
String |
value() |
static FrequencyCapBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrequencyCapBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrequencyCapBehavior TURN_ON
public static final FrequencyCapBehavior TURN_OFF
public static final FrequencyCapBehavior DEFER
public static final FrequencyCapBehavior UNKNOWN
public static FrequencyCapBehavior[] values()
for (FrequencyCapBehavior c : FrequencyCapBehavior.values()) System.out.println(c);
public static FrequencyCapBehavior 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 FrequencyCapBehavior fromValue(String v)
Copyright © 2018. All Rights Reserved.