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 classCommonFieldType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description IDDocument ID.
SURNAMEPerson surname field.
MAIDEN_NAMEPerson maiden name field.
GIVEN_NAMESPerson given names field.
BIRTH_DATEPerson birth date field.
NATIONALITYPerson nationality field.
BIRTHPLACEPerson birthplace field.
EXPIRY_DATEDocument expiry date field.
EYE_COLORPerson eye color field.
HEIGHTPerson height field.
ISSUE_DATEDocument issue date field.
ISSUING_AUTHORITYDocument issuing authority field.
ADDRESSAddress field.
PSEUDONYMPseudonym field.
MRZMRZ field.
COUNTRY_CODECountry code (ISO-3166 Alpha-3) field.
GENDERGender field.
SIGNATURESignature field.
PHOTOPhoto field.
VALID_FROM_DATEDate of start of validity field.
ROUTING_NUMBERCheck routing number.
ACCOUNT_NUMBERCheck account number.
PLACE_OF_ISSUEPlace of issue for the identity card.
TITLE_TYPEType of the title field in the identity document.
REMARKSRemarks field in the identity document.
NAMEFull name field.
CARD_ACCESS_NUMBERCard access number field.
-
Method Summary
Modifier and Type Method Description final StringtoJson()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.
-
-
-
-