Enum PostFileBankModel.TypeEnum
- java.lang.Object
-
- java.lang.Enum<PostFileBankModel.TypeEnum>
-
- app.cybrid.cybrid_api_bank.client.model.PostFileBankModel.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PostFileBankModel.TypeEnum>
- Enclosing class:
- PostFileBankModel
public static enum PostFileBankModel.TypeEnum extends Enum<PostFileBankModel.TypeEnum>
The type of file.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK_STATEMENTDRIVERS_LICENSE_BACKDRIVERS_LICENSE_FRONTEIN_LETTERIDENTIFICATION_CARDINCORPORATION_CERTIFICATEPASSPORTPROPERTY_TAXRESIDENCE_CARDSELFIESELFIE_LEFTSELFIE_RIGHTSELFIE_VIDEOTAX_DOCUMENTUTILITY_BILLVISA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PostFileBankModel.TypeEnumfromValue(String value)StringgetValue()StringtoString()static PostFileBankModel.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PostFileBankModel.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRIVERS_LICENSE_FRONT
public static final PostFileBankModel.TypeEnum DRIVERS_LICENSE_FRONT
-
DRIVERS_LICENSE_BACK
public static final PostFileBankModel.TypeEnum DRIVERS_LICENSE_BACK
-
PASSPORT
public static final PostFileBankModel.TypeEnum PASSPORT
-
VISA
public static final PostFileBankModel.TypeEnum VISA
-
IDENTIFICATION_CARD
public static final PostFileBankModel.TypeEnum IDENTIFICATION_CARD
-
RESIDENCE_CARD
public static final PostFileBankModel.TypeEnum RESIDENCE_CARD
-
SELFIE
public static final PostFileBankModel.TypeEnum SELFIE
-
SELFIE_VIDEO
public static final PostFileBankModel.TypeEnum SELFIE_VIDEO
-
SELFIE_LEFT
public static final PostFileBankModel.TypeEnum SELFIE_LEFT
-
SELFIE_RIGHT
public static final PostFileBankModel.TypeEnum SELFIE_RIGHT
-
UTILITY_BILL
public static final PostFileBankModel.TypeEnum UTILITY_BILL
-
BANK_STATEMENT
public static final PostFileBankModel.TypeEnum BANK_STATEMENT
-
PROPERTY_TAX
public static final PostFileBankModel.TypeEnum PROPERTY_TAX
-
TAX_DOCUMENT
public static final PostFileBankModel.TypeEnum TAX_DOCUMENT
-
EIN_LETTER
public static final PostFileBankModel.TypeEnum EIN_LETTER
-
INCORPORATION_CERTIFICATE
public static final PostFileBankModel.TypeEnum INCORPORATION_CERTIFICATE
-
-
Method Detail
-
values
public static PostFileBankModel.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 (PostFileBankModel.TypeEnum c : PostFileBankModel.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 PostFileBankModel.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<PostFileBankModel.TypeEnum>
-
fromValue
public static PostFileBankModel.TypeEnum fromValue(String value)
-
-