Creates new parser which parses given MRZ record. @param mrz the MRZ record, not null.
(String mrz)
| 53 | * @param mrz the MRZ record, not null. |
| 54 | */ |
| 55 | public MrzParser(String mrz) { |
| 56 | this.mrz = mrz; |
| 57 | this.rows = mrz.split("\n"); |
| 58 | this.format = MrzFormat.get(mrz); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * @author jllarraz@github |