Enum CommonFieldType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum CommonFieldType extends Enum<CommonFieldType>
Common field types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDDocument ID
SurnamePerson surname field
MaidenNamePerson maiden name field
GivenNamesPerson given names field
BirthDatePerson birth date field
NationalityPerson nationality field
BirthplacePerson birthplace field
ExpiryDateDocument expiry date field
EyeColorPerson eye color field
HeightPerson height field
IssueDateDocument issue date field
IssuingAuthorityDocument issuing authority field
AddressAddress field
PseudonymPseudonym field
MRZMRZ field
CountryCodeCountry code (ISO-3166 Alpha-3) field
GenderGender field
SignatureSignature field
PhotoPhoto field
ValidFromDateDate of start of validity field
RoutingNumberCheck routing number
AccountNumberCheck account number
PlaceOfIssuePlace of issue for the identity card
TitleTypeType of the title field in the identity document
RemarksRemarks field in the identity document
NameFull name field
CardAccessNumberCard access number field
-
Method Summary
Modifier and Type Method Description final CommonFieldTypevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<CommonFieldType>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final CommonFieldType 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<CommonFieldType> 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.
-
-
-
-