Enum AcceptedDocuments
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum AcceptedDocuments extends Enum<AcceptedDocuments>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
AcceptedDocuments.Companion
-
Field Summary
Fields Modifier and Type Field Description private final Integer
stringResId
private final Integer
iconResId
private final String
name
private final Integer
ordinal
private final EnumEntries<AcceptedDocuments>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description Unknown
Passport
Visa
DriversLicense
IdentificationCard
Permit
Currency
ResidenceDocument
TravelDocument
BirthCertificate
VehicleRegistration
Other
WeaponLicense
TribalIdentification
VoterIdentification
Military
TaxIdentification
FederalID
MedicalCard
-
Method Summary
Modifier and Type Method Description final AcceptedDocuments
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<AcceptedDocuments>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final Integer
getStringResId()
final Integer
getIconResId()
final EnumEntries<AcceptedDocuments>
getEntries()
-
-
Method Detail
-
valueOf
final AcceptedDocuments valueOf(String value)
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.)
-
values
final Array<AcceptedDocuments> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getStringResId
final Integer getStringResId()
-
getIconResId
final Integer getIconResId()
-
getEntries
final EnumEntries<AcceptedDocuments> getEntries()
-
-
-
-