public enum CreativeWrapperOrdering extends Enum<CreativeWrapperOrdering>
Java class for CreativeWrapperOrdering.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CreativeWrapperOrdering">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NO_PREFERENCE"/>
<enumeration value="INNER"/>
<enumeration value="OUTER"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INNER
Wrapping occurs as early as possible.
|
NO_PREFERENCE
|
OUTER
Wrapping occurs after both
NO_PREFERENCE and INNER |
| Modifier and Type | Method and Description |
|---|---|
static CreativeWrapperOrdering |
fromValue(String v) |
String |
value() |
static CreativeWrapperOrdering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreativeWrapperOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreativeWrapperOrdering NO_PREFERENCE
public static final CreativeWrapperOrdering INNER
public static final CreativeWrapperOrdering OUTER
NO_PREFERENCE and INNERpublic static CreativeWrapperOrdering[] values()
for (CreativeWrapperOrdering c : CreativeWrapperOrdering.values()) System.out.println(c);
public static CreativeWrapperOrdering 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 CreativeWrapperOrdering fromValue(String v)
Copyright © 2018. All Rights Reserved.