Verifies the check digit. @param col the 0-based column of the check digit. @param row the 0-based column of the check digit. @param strRange the range for which the check digit is computed. @param fieldName (optional) field name. Used only when validity check fails. @return true if check digit is v
(int col, int row, MrzRange strRange, String fieldName)
| 135 | * @return true if check digit is valid, false if not |
| 136 | */ |
| 137 | public boolean checkDigit(int col, int row, MrzRange strRange, String fieldName) { |
| 138 | return checkDigit(col, row, rawValue(strRange), fieldName); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Verifies the check digit. |