public enum ConversionTrackerCategory extends Enum<ConversionTrackerCategory>
Java class for ConversionTracker.Category.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ConversionTracker.Category">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DEFAULT"/>
<enumeration value="PAGE_VIEW"/>
<enumeration value="PURCHASE"/>
<enumeration value="SIGNUP"/>
<enumeration value="LEAD"/>
<enumeration value="REMARKETING"/>
<enumeration value="DOWNLOAD"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFAULT |
DOWNLOAD
Download is applicable only to
AppConversion types,
and is an error to use in conjunction with other types. |
LEAD |
PAGE_VIEW |
PURCHASE |
REMARKETING |
SIGNUP |
| Modifier and Type | Method and Description |
|---|---|
static ConversionTrackerCategory |
fromValue(String v) |
String |
value() |
static ConversionTrackerCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConversionTrackerCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversionTrackerCategory DEFAULT
public static final ConversionTrackerCategory PAGE_VIEW
public static final ConversionTrackerCategory PURCHASE
public static final ConversionTrackerCategory SIGNUP
public static final ConversionTrackerCategory LEAD
public static final ConversionTrackerCategory REMARKETING
public static final ConversionTrackerCategory DOWNLOAD
AppConversion types,
and is an error to use in conjunction with other types.
AppConversions must use download only if they also specify
AppConversion.appConversionType as DOWNLOAD or FIRST_OPEN.
If any other appConversionType is used, then some other category besides
DOWNLOAD must be used.public static ConversionTrackerCategory[] values()
for (ConversionTrackerCategory c : ConversionTrackerCategory.values()) System.out.println(c);
public static ConversionTrackerCategory 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 ConversionTrackerCategory fromValue(String v)
Copyright © 2023. All rights reserved.