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 ID
Document ID
Surname
Person surname field
MaidenName
Person maiden name field
GivenNames
Person given names field
BirthDate
Person birth date field
Nationality
Person nationality field
Birthplace
Person birthplace field
ExpiryDate
Document expiry date field
EyeColor
Person eye color field
Height
Person height field
IssueDate
Document issue date field
IssuingAuthority
Document issuing authority field
Address
Address field
Pseudonym
Pseudonym field
MRZ
MRZ field
CountryCode
Country code (ISO-3166 Alpha-3) field
Gender
Gender field
Signature
Signature field
Photo
Photo field
ValidFromDate
Date of start of validity field
RoutingNumber
Check routing number
AccountNumber
Check account number
PlaceOfIssue
Place of issue for the identity card
TitleType
Type of the title field in the identity document
Remarks
Remarks field in the identity document
Name
Full name field
CardAccessNumber
Card access number field
-
Method Summary
Modifier and Type Method Description final CommonFieldType
valueOf(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.
-
-
-
-