Enum VerificationCheckTypeBankModel
- java.lang.Object
-
- java.lang.Enum<VerificationCheckTypeBankModel>
-
- app.cybrid.cybrid_api_bank.client.model.VerificationCheckTypeBankModel
-
- All Implemented Interfaces:
Serializable,Comparable<VerificationCheckTypeBankModel>
public enum VerificationCheckTypeBankModel extends Enum<VerificationCheckTypeBankModel>
Gets or Sets VerificationCheckType
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VerificationCheckTypeBankModelfromValue(String value)StringgetValue()StringtoString()static VerificationCheckTypeBankModelvalueOf(String name)Returns the enum constant of this type with the specified name.static VerificationCheckTypeBankModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUSINESS_WATCHLISTS
public static final VerificationCheckTypeBankModel BUSINESS_WATCHLISTS
-
BUSINESS_VERIFICATION
public static final VerificationCheckTypeBankModel BUSINESS_VERIFICATION
-
BUSINESS_TAX_ID_VERIFICATION
public static final VerificationCheckTypeBankModel BUSINESS_TAX_ID_VERIFICATION
-
PERSON_ATTESTED
public static final VerificationCheckTypeBankModel PERSON_ATTESTED
-
PERSON_TAX_ID_ATTESTED
public static final VerificationCheckTypeBankModel PERSON_TAX_ID_ATTESTED
-
PERSON_WATCHLISTS
public static final VerificationCheckTypeBankModel PERSON_WATCHLISTS
-
PERSON_VERIFICATION
public static final VerificationCheckTypeBankModel PERSON_VERIFICATION
-
PERSON_AUTHENTICATION
public static final VerificationCheckTypeBankModel PERSON_AUTHENTICATION
-
PERSON_GOV_ID_VERIFICATION
public static final VerificationCheckTypeBankModel PERSON_GOV_ID_VERIFICATION
-
PERSON_TAX_ID_VERIFICATION
public static final VerificationCheckTypeBankModel PERSON_TAX_ID_VERIFICATION
-
EXTERNAL_BANK_ACCOUNT_VERIFICATION
public static final VerificationCheckTypeBankModel EXTERNAL_BANK_ACCOUNT_VERIFICATION
-
EXTERNAL_BANK_ACCOUNT_ATTESTED
public static final VerificationCheckTypeBankModel EXTERNAL_BANK_ACCOUNT_ATTESTED
-
-
Method Detail
-
values
public static VerificationCheckTypeBankModel[] 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 (VerificationCheckTypeBankModel c : VerificationCheckTypeBankModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerificationCheckTypeBankModel 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<VerificationCheckTypeBankModel>
-
fromValue
public static VerificationCheckTypeBankModel fromValue(String value)
-
-