Enum IdentityVerificationMethodBankModel
- java.lang.Object
-
- java.lang.Enum<IdentityVerificationMethodBankModel>
-
- app.cybrid.cybrid_api_bank.client.model.IdentityVerificationMethodBankModel
-
- All Implemented Interfaces:
Serializable,Comparable<IdentityVerificationMethodBankModel>
public enum IdentityVerificationMethodBankModel extends Enum<IdentityVerificationMethodBankModel>
Gets or Sets IdentityVerificationMethod
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_OWNERSHIPATTESTEDATTESTED_BUSINESS_REGISTRATIONATTESTED_ID_AND_SELFIEATTESTED_OWNERSHIPBUSINESS_REGISTRATIONDOCUMENT_SUBMISSIONENHANCED_DUE_DILIGENCEID_AND_SELFIETAX_ID_AND_SELFIEWATCHLISTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentityVerificationMethodBankModelfromValue(String value)StringgetValue()StringtoString()static IdentityVerificationMethodBankModelvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentityVerificationMethodBankModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTESTED
public static final IdentityVerificationMethodBankModel ATTESTED
-
DOCUMENT_SUBMISSION
public static final IdentityVerificationMethodBankModel DOCUMENT_SUBMISSION
-
ENHANCED_DUE_DILIGENCE
public static final IdentityVerificationMethodBankModel ENHANCED_DUE_DILIGENCE
-
ID_AND_SELFIE
public static final IdentityVerificationMethodBankModel ID_AND_SELFIE
-
TAX_ID_AND_SELFIE
public static final IdentityVerificationMethodBankModel TAX_ID_AND_SELFIE
-
BUSINESS_REGISTRATION
public static final IdentityVerificationMethodBankModel BUSINESS_REGISTRATION
-
ATTESTED_ID_AND_SELFIE
public static final IdentityVerificationMethodBankModel ATTESTED_ID_AND_SELFIE
-
ATTESTED_BUSINESS_REGISTRATION
public static final IdentityVerificationMethodBankModel ATTESTED_BUSINESS_REGISTRATION
-
WATCHLISTS
public static final IdentityVerificationMethodBankModel WATCHLISTS
-
ATTESTED_OWNERSHIP
public static final IdentityVerificationMethodBankModel ATTESTED_OWNERSHIP
-
ACCOUNT_OWNERSHIP
public static final IdentityVerificationMethodBankModel ACCOUNT_OWNERSHIP
-
-
Method Detail
-
values
public static IdentityVerificationMethodBankModel[] 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 (IdentityVerificationMethodBankModel c : IdentityVerificationMethodBankModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentityVerificationMethodBankModel 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<IdentityVerificationMethodBankModel>
-
fromValue
public static IdentityVerificationMethodBankModel fromValue(String value)
-
-