public enum AccountHolderIdentificationType extends java.lang.Enum<AccountHolderIdentificationType>
| Enum Constant and Description |
|---|
COMPANY_REGISTRATION |
DRIVING_LICENCE |
NATIONAL_ID |
PASSPORT |
TAX_ID |
| Modifier and Type | Method and Description |
|---|---|
static AccountHolderIdentificationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountHolderIdentificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="passport") public static final AccountHolderIdentificationType PASSPORT
@SerializedName(value="driving_licence") public static final AccountHolderIdentificationType DRIVING_LICENCE
@SerializedName(value="national_id") public static final AccountHolderIdentificationType NATIONAL_ID
@SerializedName(value="company_registration") public static final AccountHolderIdentificationType COMPANY_REGISTRATION
@SerializedName(value="tax_id") public static final AccountHolderIdentificationType TAX_ID
public static AccountHolderIdentificationType[] values()
for (AccountHolderIdentificationType c : AccountHolderIdentificationType.values()) System.out.println(c);
public static AccountHolderIdentificationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null