public enum CustomerMatchUploadKeyType extends Enum<CustomerMatchUploadKeyType>
Java class for CustomerMatchUploadKeyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CustomerMatchUploadKeyType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="CONTACT_INFO"/>
<enumeration value="CRM_ID"/>
<enumeration value="MOBILE_ADVERTISING_ID"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONTACT_INFO
Members are matched from customer info such as email address, phone number or
physical address.
|
CRM_ID
Members are matched from advertiser generated and assigned user id.
|
MOBILE_ADVERTISING_ID
Members are matched from mobile advertising ids.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static CustomerMatchUploadKeyType |
fromValue(String v) |
String |
value() |
static CustomerMatchUploadKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomerMatchUploadKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerMatchUploadKeyType UNKNOWN
public static final CustomerMatchUploadKeyType CONTACT_INFO
public static final CustomerMatchUploadKeyType CRM_ID
public static final CustomerMatchUploadKeyType MOBILE_ADVERTISING_ID
public static CustomerMatchUploadKeyType[] values()
for (CustomerMatchUploadKeyType c : CustomerMatchUploadKeyType.values()) System.out.println(c);
public static CustomerMatchUploadKeyType 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 CustomerMatchUploadKeyType fromValue(String v)
Copyright © 2023. All rights reserved.