public enum OfflineDataUploadUserIdentifierType extends Enum<OfflineDataUploadUserIdentifierType>
Java class for OfflineDataUploadUserIdentifierType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OfflineDataUploadUserIdentifierType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="HASHED_EMAIL"/>
<enumeration value="HASHED_PHONE"/>
<enumeration value="HASHED_LAST_NAME"/>
<enumeration value="HASHED_FIRST_NAME"/>
<enumeration value="CITY"/>
<enumeration value="STATE"/>
<enumeration value="ZIPCODE"/>
<enumeration value="COUNTRY_CODE"/>
<enumeration value="EXTERNAL_USER_ID"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CITY
Indicates the city.
|
COUNTRY_CODE
ISO two-letter country codes.
|
EXTERNAL_USER_ID
Indicates the external id like third party id.
|
HASHED_EMAIL
Indicates the email address.
|
HASHED_FIRST_NAME
Indicates the first name.
|
HASHED_LAST_NAME
Indicates the last name.
|
HASHED_PHONE
Indicates the phone number.
|
STATE
Indicates the state.
|
UNKNOWN
UNKNOWN value can not be passed as input.
|
ZIPCODE
Indicates the zip code.
|
| Modifier and Type | Method and Description |
|---|---|
static OfflineDataUploadUserIdentifierType |
fromValue(String v) |
String |
value() |
static OfflineDataUploadUserIdentifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OfflineDataUploadUserIdentifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OfflineDataUploadUserIdentifierType UNKNOWN
public static final OfflineDataUploadUserIdentifierType HASHED_EMAIL
public static final OfflineDataUploadUserIdentifierType HASHED_PHONE
public static final OfflineDataUploadUserIdentifierType HASHED_LAST_NAME
public static final OfflineDataUploadUserIdentifierType HASHED_FIRST_NAME
public static final OfflineDataUploadUserIdentifierType CITY
public static final OfflineDataUploadUserIdentifierType STATE
public static final OfflineDataUploadUserIdentifierType ZIPCODE
public static final OfflineDataUploadUserIdentifierType COUNTRY_CODE
public static final OfflineDataUploadUserIdentifierType EXTERNAL_USER_ID
public static OfflineDataUploadUserIdentifierType[] values()
for (OfflineDataUploadUserIdentifierType c : OfflineDataUploadUserIdentifierType.values()) System.out.println(c);
public static OfflineDataUploadUserIdentifierType 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 OfflineDataUploadUserIdentifierType fromValue(String v)
Copyright © 2023. All rights reserved.