Enum CommonFieldType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum CommonFieldType extends Enum<CommonFieldType>
Common field types.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
CommonFieldType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description ID
Document ID.
SURNAME
Person surname field.
MAIDEN_NAME
Person maiden name field.
GIVEN_NAMES
Person given names field.
BIRTH_DATE
Person birth date field.
NATIONALITY
Person nationality field.
BIRTHPLACE
Person birthplace field.
EXPIRY_DATE
Document expiry date field.
EYE_COLOR
Person eye color field.
HEIGHT
Person height field.
ISSUE_DATE
Document issue date field.
ISSUING_AUTHORITY
Document issuing authority field.
ADDRESS
Address field.
PSEUDONYM
Pseudonym field.
MRZ
MRZ field.
COUNTRY_CODE
Country code (ISO-3166 Alpha-3) field.
GENDER
Gender field.
SIGNATURE
Signature field.
PHOTO
Photo field.
VALID_FROM_DATE
Date of start of validity field.
ROUTING_NUMBER
Check routing number.
ACCOUNT_NUMBER
Check account number.
PLACE_OF_ISSUE
Place of issue for the identity card.
TITLE_TYPE
Type of the title field in the identity document.
REMARKS
Remarks field in the identity document.
NAME
Full name field.
CARD_ACCESS_NUMBER
Card access number field.
-
Method Summary
Modifier and Type Method Description final String
toJson()
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.
-
-
-
-