Package io.scanbot.sdk.genericdocument
Enum CommonFieldType
- java.lang.Object
-
- java.lang.Enum<CommonFieldType>
-
- io.scanbot.sdk.genericdocument.CommonFieldType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CommonFieldType>
public enum CommonFieldType extends java.lang.Enum<CommonFieldType>
Common field types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_NUMBERCheck account number.ADDRESSAddress field.BIRTH_DATEPerson birth date field.BIRTHPLACEPerson birthplace field.CARD_ACCESS_NUMBERCard access number field.EXPIRY_DATEDocument expiry date field.EYE_COLORPerson eye color field.GENDERGender field.GIVEN_NAMESPerson given names field.HEIGHTPerson height field.IDDocument ID.ISSUE_DATEDocument issue date field.ISSUING_AUTHORITYDocument issuing authority field.ISSUING_COUNTRYIssuing country field.MAIDEN_NAMEPerson maiden name field.MRZMRZ field.NAMEFull name field.NATIONALITYPerson nationality field.PHOTOPhoto field.PLACE_OF_ISSUEPlace of issue for the identity card.PSEUDONYMPseudonym field.REMARKSRemarks field in the identity document.ROUTING_NUMBERCheck routing number.SIGNATURESignature field.SURNAMEPerson surname field.TITLE_TYPEType of the title field in the identity document.VALID_FROM_DATEDate of start of validity field.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonFieldTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CommonFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final CommonFieldType ID
Document ID.
-
SURNAME
public static final CommonFieldType SURNAME
Person surname field.
-
MAIDEN_NAME
public static final CommonFieldType MAIDEN_NAME
Person maiden name field.
-
GIVEN_NAMES
public static final CommonFieldType GIVEN_NAMES
Person given names field.
-
BIRTH_DATE
public static final CommonFieldType BIRTH_DATE
Person birth date field.
-
NATIONALITY
public static final CommonFieldType NATIONALITY
Person nationality field.
-
BIRTHPLACE
public static final CommonFieldType BIRTHPLACE
Person birthplace field.
-
EXPIRY_DATE
public static final CommonFieldType EXPIRY_DATE
Document expiry date field.
-
EYE_COLOR
public static final CommonFieldType EYE_COLOR
Person eye color field.
-
HEIGHT
public static final CommonFieldType HEIGHT
Person height field.
-
ISSUE_DATE
public static final CommonFieldType ISSUE_DATE
Document issue date field.
-
ISSUING_AUTHORITY
public static final CommonFieldType ISSUING_AUTHORITY
Document issuing authority field.
-
ADDRESS
public static final CommonFieldType ADDRESS
Address field.
-
PSEUDONYM
public static final CommonFieldType PSEUDONYM
Pseudonym field.
-
MRZ
public static final CommonFieldType MRZ
MRZ field.
-
ISSUING_COUNTRY
public static final CommonFieldType ISSUING_COUNTRY
Issuing country field.
-
GENDER
public static final CommonFieldType GENDER
Gender field.
-
SIGNATURE
public static final CommonFieldType SIGNATURE
Signature field.
-
PHOTO
public static final CommonFieldType PHOTO
Photo field.
-
VALID_FROM_DATE
public static final CommonFieldType VALID_FROM_DATE
Date of start of validity field.
-
ROUTING_NUMBER
public static final CommonFieldType ROUTING_NUMBER
Check routing number.
-
ACCOUNT_NUMBER
public static final CommonFieldType ACCOUNT_NUMBER
Check account number.
-
PLACE_OF_ISSUE
public static final CommonFieldType PLACE_OF_ISSUE
Place of issue for the identity card.
-
TITLE_TYPE
public static final CommonFieldType TITLE_TYPE
Type of the title field in the identity document.
-
REMARKS
public static final CommonFieldType REMARKS
Remarks field in the identity document.
-
NAME
public static final CommonFieldType NAME
Full name field.
-
CARD_ACCESS_NUMBER
public static final CommonFieldType CARD_ACCESS_NUMBER
Card access number field.
-
-
Method Detail
-
values
public static CommonFieldType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CommonFieldType c : CommonFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonFieldType valueOf(java.lang.String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-