public enum AdRuleSlotBehavior extends Enum<AdRuleSlotBehavior>
Java class for AdRuleSlotBehavior.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AdRuleSlotBehavior">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ALWAYS_SHOW"/>
<enumeration value="NEVER_SHOW"/>
<enumeration value="DEFER"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALWAYS_SHOW
This ad rule always includes this slot's ads.
|
DEFER
Defer to lower priority rules.
|
NEVER_SHOW
This ad rule never includes this slot's ads.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static AdRuleSlotBehavior |
fromValue(String v) |
String |
value() |
static AdRuleSlotBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdRuleSlotBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdRuleSlotBehavior ALWAYS_SHOW
public static final AdRuleSlotBehavior NEVER_SHOW
public static final AdRuleSlotBehavior DEFER
public static final AdRuleSlotBehavior UNKNOWN
public static AdRuleSlotBehavior[] values()
for (AdRuleSlotBehavior c : AdRuleSlotBehavior.values()) System.out.println(c);
public static AdRuleSlotBehavior 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 AdRuleSlotBehavior fromValue(String v)
Copyright © 2018. All Rights Reserved.