MRZData
MRZData is a result class that contains the parsed MRZ information.
Definition
Assembly: DynamsoftMRZScanner.aar
Namespace: com.dynamsoft.mrzscanner.ui
class MRZData
Methods
| Method | Description |
|---|---|
getFirstName |
Returns the first name of the user of the MRZ document. |
getLastName |
Returns the last name of the user of the MRZ document. |
getSex |
Returns the sex of the user of the MRZ document. |
getIssuingState |
Returns the issuing state of the MRZ document. |
getNationality |
Returns the nationality of the user of the MRZ document. |
getDateOfBirth |
Returns the date of birth of the user of the MRZ document. |
getDateOfExpire |
Returns the expiry date of the MRZ document. |
getDocumentType |
Returns the type of MRZ document. |
getDocumentNumber |
Returns the MRZ document number. |
getAge |
Returns the age of the user of the MRZ document. |
getMrzText |
Returns the raw text of the MRZ. |
getFirstName
Returns the first name of the user of the MRZ document.
String getFirstName();
Return Value
The first name.
getLastName
Returns the last name of the user of the MRZ document.
String getLastName();
Return Value
The last name.
getSex
Returns the sex of the user of the MRZ document.
String getSex();
Return Value
The sex.
getIssuingState
Returns the issuing state of the MRZ document.
String getIssuingState();
Return Value
The issuing state.
getNationality
Returns the nationality of the user of the MRZ document.
String getNationality();
Return Value
The nationality.
getDateOfBirth
Returns the date of birth of the user of the MRZ document.
String getDateOfBirth();
Return Value
The date of birth.
getDateOfExpire
Returns the expiry date of the MRZ document.
String getDateOfExpire();
Return Value
The date of expiry.
getDocumentType
Returns the type of MRZ document.
String getDocumentType();
Return Value
The type of document, such as ID cards or passports.
getDocumentNumber
Returns the MRZ document number.
String getDocumentNumber();
Return Value
The document number.
getAge
Returns the age of the user of the MRZ document.
int getAge();
Return Value
The age.
getMrzText
Returns the raw text of the MRZ.
String getMrzText();
Return Value
The raw text of the MRZ.