Enum IdentityVerificationWithDetailsBankModel.TypeEnum
- java.lang.Object
-
- java.lang.Enum<IdentityVerificationWithDetailsBankModel.TypeEnum>
-
- app.cybrid.cybrid_api_bank.client.model.IdentityVerificationWithDetailsBankModel.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IdentityVerificationWithDetailsBankModel.TypeEnum>
- Enclosing class:
- IdentityVerificationWithDetailsBankModel
public static enum IdentityVerificationWithDetailsBankModel.TypeEnum extends Enum<IdentityVerificationWithDetailsBankModel.TypeEnum>
The type of identity verification.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KYC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentityVerificationWithDetailsBankModel.TypeEnumfromValue(String value)StringgetValue()StringtoString()static IdentityVerificationWithDetailsBankModel.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentityVerificationWithDetailsBankModel.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KYC
public static final IdentityVerificationWithDetailsBankModel.TypeEnum KYC
-
-
Method Detail
-
values
public static IdentityVerificationWithDetailsBankModel.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 (IdentityVerificationWithDetailsBankModel.TypeEnum c : IdentityVerificationWithDetailsBankModel.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 IdentityVerificationWithDetailsBankModel.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<IdentityVerificationWithDetailsBankModel.TypeEnum>
-
fromValue
public static IdentityVerificationWithDetailsBankModel.TypeEnum fromValue(String value)
-
-