Enum VerificationCheckStateBankModel
- java.lang.Object
-
- java.lang.Enum<VerificationCheckStateBankModel>
-
- app.cybrid.cybrid_api_bank.client.model.VerificationCheckStateBankModel
-
- All Implemented Interfaces:
Serializable,Comparable<VerificationCheckStateBankModel>
public enum VerificationCheckStateBankModel extends Enum<VerificationCheckStateBankModel>
Gets or Sets VerificationCheckState
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPIREDFAILEDINVALIDATEDPASSED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VerificationCheckStateBankModelfromValue(String value)StringgetValue()StringtoString()static VerificationCheckStateBankModelvalueOf(String name)Returns the enum constant of this type with the specified name.static VerificationCheckStateBankModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PASSED
public static final VerificationCheckStateBankModel PASSED
-
FAILED
public static final VerificationCheckStateBankModel FAILED
-
EXPIRED
public static final VerificationCheckStateBankModel EXPIRED
-
INVALIDATED
public static final VerificationCheckStateBankModel INVALIDATED
-
-
Method Detail
-
values
public static VerificationCheckStateBankModel[] 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 (VerificationCheckStateBankModel c : VerificationCheckStateBankModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerificationCheckStateBankModel 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<VerificationCheckStateBankModel>
-
fromValue
public static VerificationCheckStateBankModel fromValue(String value)
-
-