public enum CreativeTemplateType extends Enum<CreativeTemplateType>
Java class for CreativeTemplateType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CreativeTemplateType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SYSTEM_DEFINED"/>
<enumeration value="USER_DEFINED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
SYSTEM_DEFINED
Creative templates that Google defines for users to use.
|
USER_DEFINED
Arbitrary creative templates that users can define as they see fit.
|
| Modifier and Type | Method and Description |
|---|---|
static CreativeTemplateType |
fromValue(String v) |
String |
value() |
static CreativeTemplateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreativeTemplateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreativeTemplateType SYSTEM_DEFINED
public static final CreativeTemplateType USER_DEFINED
public static CreativeTemplateType[] values()
for (CreativeTemplateType c : CreativeTemplateType.values()) System.out.println(c);
public static CreativeTemplateType 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 CreativeTemplateType fromValue(String v)
Copyright © 2018. All Rights Reserved.