public enum UserListType extends Enum<UserListType>
Java class for UserListType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UserListType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="REMARKETING"/>
<enumeration value="LOGICAL"/>
<enumeration value="EXTERNAL_REMARKETING"/>
<enumeration value="RULE_BASED"/>
<enumeration value="SIMILAR"/>
<enumeration value="CRM_BASED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CRM_BASED
UserList of first party CRM data provided by advertiser in the form of emails or
other formats.
|
EXTERNAL_REMARKETING
UserList created in the DoubleClick platform.
|
LOGICAL
UserList represented as a combination of other user lists/interests.
|
REMARKETING
UserList represented as a collection of conversion types.
|
RULE_BASED
UserList associated with a rule.
|
SIMILAR
UserList with users similar to users of another UserList.
|
UNKNOWN
UNKNOWN value can not be passed as input.
|
| Modifier and Type | Method and Description |
|---|---|
static UserListType |
fromValue(String v) |
String |
value() |
static UserListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserListType UNKNOWN
public static final UserListType REMARKETING
public static final UserListType LOGICAL
public static final UserListType EXTERNAL_REMARKETING
public static final UserListType RULE_BASED
public static final UserListType SIMILAR
public static final UserListType CRM_BASED
public static UserListType[] values()
for (UserListType c : UserListType.values()) System.out.println(c);
public static UserListType 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 UserListType fromValue(String v)
Copyright © 2023. All rights reserved.