Enum IdentificationData.TypeEnum
- java.lang.Object
-
- java.lang.Enum<IdentificationData.TypeEnum>
-
- com.adyen.model.legalentitymanagement.IdentificationData.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IdentificationData.TypeEnum>
- Enclosing class:
- IdentificationData
public static enum IdentificationData.TypeEnum extends Enum<IdentificationData.TypeEnum>
Type of identity data. For individuals, the following types are supported. See our [onboarding guide](https://docs.adyen.com/platforms/onboard-users/onboarding-steps/?onboarding_type=custom) for other supported countries. - Australia: **driversLicense**, **passport** - Hong Kong: **driversLicense**, **nationalIdNumber**, **passport** - New Zealand: **driversLicense**, **passport** - Singapore: **driversLicense**, **nationalIdNumber**, **passport** - All other supported countries: **nationalIdNumber**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRIVERSLICENSEIDENTITYCARDNATIONALIDNUMBERPASSPORT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentificationData.TypeEnumfromValue(String value)StringgetValue()StringtoString()static IdentificationData.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentificationData.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NATIONALIDNUMBER
public static final IdentificationData.TypeEnum NATIONALIDNUMBER
-
PASSPORT
public static final IdentificationData.TypeEnum PASSPORT
-
DRIVERSLICENSE
public static final IdentificationData.TypeEnum DRIVERSLICENSE
-
IDENTITYCARD
public static final IdentificationData.TypeEnum IDENTITYCARD
-
-
Method Detail
-
values
public static IdentificationData.TypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IdentificationData.TypeEnum c : IdentificationData.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentificationData.TypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<IdentificationData.TypeEnum>
-
fromValue
public static IdentificationData.TypeEnum fromValue(String value)
-
-