Enum PlatformFileBankModel.FileTypeEnum
- java.lang.Object
-
- java.lang.Enum<PlatformFileBankModel.FileTypeEnum>
-
- app.cybrid.cybrid_api_bank.client.model.PlatformFileBankModel.FileTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PlatformFileBankModel.FileTypeEnum>
- Enclosing class:
- PlatformFileBankModel
public static enum PlatformFileBankModel.FileTypeEnum extends Enum<PlatformFileBankModel.FileTypeEnum>
The file type; one of drivers_license_front, drivers_license_back, passport, identification_card, residence_card, selfie, selfie_left, selfie_right, utility_bill, bank_statement, property_tax, tax_document, ein_letter, or incorporation_certificate.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK_STATEMENTDRIVERS_LICENSE_BACKDRIVERS_LICENSE_FRONTEIN_LETTERIDENTIFICATION_CARDINCORPORATION_CERTIFICATEPASSPORTPROPERTY_TAXRESIDENCE_CARDSELFIESELFIE_LEFTSELFIE_RIGHTTAX_DOCUMENTUTILITY_BILL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PlatformFileBankModel.FileTypeEnumfromValue(String value)StringgetValue()StringtoString()static PlatformFileBankModel.FileTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PlatformFileBankModel.FileTypeEnum[]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 PlatformFileBankModel.FileTypeEnum DRIVERS_LICENSE_FRONT
-
DRIVERS_LICENSE_BACK
public static final PlatformFileBankModel.FileTypeEnum DRIVERS_LICENSE_BACK
-
PASSPORT
public static final PlatformFileBankModel.FileTypeEnum PASSPORT
-
IDENTIFICATION_CARD
public static final PlatformFileBankModel.FileTypeEnum IDENTIFICATION_CARD
-
RESIDENCE_CARD
public static final PlatformFileBankModel.FileTypeEnum RESIDENCE_CARD
-
SELFIE
public static final PlatformFileBankModel.FileTypeEnum SELFIE
-
SELFIE_LEFT
public static final PlatformFileBankModel.FileTypeEnum SELFIE_LEFT
-
SELFIE_RIGHT
public static final PlatformFileBankModel.FileTypeEnum SELFIE_RIGHT
-
UTILITY_BILL
public static final PlatformFileBankModel.FileTypeEnum UTILITY_BILL
-
BANK_STATEMENT
public static final PlatformFileBankModel.FileTypeEnum BANK_STATEMENT
-
PROPERTY_TAX
public static final PlatformFileBankModel.FileTypeEnum PROPERTY_TAX
-
TAX_DOCUMENT
public static final PlatformFileBankModel.FileTypeEnum TAX_DOCUMENT
-
EIN_LETTER
public static final PlatformFileBankModel.FileTypeEnum EIN_LETTER
-
INCORPORATION_CERTIFICATE
public static final PlatformFileBankModel.FileTypeEnum INCORPORATION_CERTIFICATE
-
-
Method Detail
-
values
public static PlatformFileBankModel.FileTypeEnum[] 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 (PlatformFileBankModel.FileTypeEnum c : PlatformFileBankModel.FileTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlatformFileBankModel.FileTypeEnum 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<PlatformFileBankModel.FileTypeEnum>
-
fromValue
public static PlatformFileBankModel.FileTypeEnum fromValue(String value)
-
-