Enum IdentityVerificationBankModel.MethodEnum
- java.lang.Object
-
- java.lang.Enum<IdentityVerificationBankModel.MethodEnum>
-
- app.cybrid.cybrid_api_bank.client.model.IdentityVerificationBankModel.MethodEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IdentityVerificationBankModel.MethodEnum>
- Enclosing class:
- IdentityVerificationBankModel
public static enum IdentityVerificationBankModel.MethodEnum extends Enum<IdentityVerificationBankModel.MethodEnum>
The identity verification method.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTESTEDBUSINESS_REGISTRATIONID_AND_SELFIEPLAID_IDENTITY_MATCH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentityVerificationBankModel.MethodEnumfromValue(String value)StringgetValue()StringtoString()static IdentityVerificationBankModel.MethodEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentityVerificationBankModel.MethodEnum[]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 IdentityVerificationBankModel.MethodEnum BUSINESS_REGISTRATION
-
ID_AND_SELFIE
public static final IdentityVerificationBankModel.MethodEnum ID_AND_SELFIE
-
ATTESTED
public static final IdentityVerificationBankModel.MethodEnum ATTESTED
-
PLAID_IDENTITY_MATCH
public static final IdentityVerificationBankModel.MethodEnum PLAID_IDENTITY_MATCH
-
-
Method Detail
-
values
public static IdentityVerificationBankModel.MethodEnum[] 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 (IdentityVerificationBankModel.MethodEnum c : IdentityVerificationBankModel.MethodEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentityVerificationBankModel.MethodEnum 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<IdentityVerificationBankModel.MethodEnum>
-
fromValue
public static IdentityVerificationBankModel.MethodEnum fromValue(String value)
-
-