Enum VerificationCheckBankModel.TypeEnum
- java.lang.Object
-
- java.lang.Enum<VerificationCheckBankModel.TypeEnum>
-
- app.cybrid.cybrid_api_bank.client.model.VerificationCheckBankModel.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<VerificationCheckBankModel.TypeEnum>
- Enclosing class:
- VerificationCheckBankModel
public static enum VerificationCheckBankModel.TypeEnum extends Enum<VerificationCheckBankModel.TypeEnum>
The type of verification check.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VerificationCheckBankModel.TypeEnumfromValue(String value)StringgetValue()StringtoString()static VerificationCheckBankModel.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static VerificationCheckBankModel.TypeEnum[]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 VerificationCheckBankModel.TypeEnum BUSINESS_WATCHLISTS
-
BUSINESS_VERIFICATION
public static final VerificationCheckBankModel.TypeEnum BUSINESS_VERIFICATION
-
BUSINESS_TAX_ID_VERIFICATION
public static final VerificationCheckBankModel.TypeEnum BUSINESS_TAX_ID_VERIFICATION
-
PERSON_ATTESTED
public static final VerificationCheckBankModel.TypeEnum PERSON_ATTESTED
-
PERSON_TAX_ID_ATTESTED
public static final VerificationCheckBankModel.TypeEnum PERSON_TAX_ID_ATTESTED
-
PERSON_WATCHLISTS
public static final VerificationCheckBankModel.TypeEnum PERSON_WATCHLISTS
-
PERSON_VERIFICATION
public static final VerificationCheckBankModel.TypeEnum PERSON_VERIFICATION
-
PERSON_AUTHENTICATION
public static final VerificationCheckBankModel.TypeEnum PERSON_AUTHENTICATION
-
PERSON_GOV_ID_VERIFICATION
public static final VerificationCheckBankModel.TypeEnum PERSON_GOV_ID_VERIFICATION
-
PERSON_TAX_ID_VERIFICATION
public static final VerificationCheckBankModel.TypeEnum PERSON_TAX_ID_VERIFICATION
-
-
Method Detail
-
values
public static VerificationCheckBankModel.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 (VerificationCheckBankModel.TypeEnum c : VerificationCheckBankModel.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 VerificationCheckBankModel.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<VerificationCheckBankModel.TypeEnum>
-
fromValue
public static VerificationCheckBankModel.TypeEnum fromValue(String value)
-
-