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 ATTESTEDATTESTED_OWNERSHIPBUSINESS_REGISTRATIONDOCUMENT_SUBMISSIONID_AND_SELFIEPLAID_IDENTITY_MATCHTAX_ID_AND_SELFIE
-
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
-
BUSINESS_REGISTRATION
public static final IdentityVerificationMethodBankModel BUSINESS_REGISTRATION
-
ID_AND_SELFIE
public static final IdentityVerificationMethodBankModel ID_AND_SELFIE
-
TAX_ID_AND_SELFIE
public static final IdentityVerificationMethodBankModel TAX_ID_AND_SELFIE
-
ATTESTED
public static final IdentityVerificationMethodBankModel ATTESTED
-
ATTESTED_OWNERSHIP
public static final IdentityVerificationMethodBankModel ATTESTED_OWNERSHIP
-
PLAID_IDENTITY_MATCH
public static final IdentityVerificationMethodBankModel PLAID_IDENTITY_MATCH
-
DOCUMENT_SUBMISSION
public static final IdentityVerificationMethodBankModel DOCUMENT_SUBMISSION
-
-
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)
-
-