Class IsoIecPure11System

All Implemented Interfaces:
Serializable, CheckDigit, IsoIecConstants
Direct Known Subclasses:
VATidELCheckDigit, VATidFICheckDigit

public class IsoIecPure11System extends IsoIec7064PureSystem implements IsoIecConstants
Implements ISO/IEC 7064, MOD 11-2 check digit calculation/validation.

MOD 11-2 applies to numeric strings, the check digit is numeric or 'X'. See Wikipedia - ISO/IEC_7064 (de) for more details.

Since:
1.10.0
Author:
EUG https://github.com/homebeaver
See Also:
  • Method Details

    • getInstance

      public static CheckDigit getInstance()
      Gets the singleton instance of this validator.
      Returns:
      A singleton instance of the class.
    • getRadix

      protected int getRadix()
      Description copied from class: IsoIec7064PureSystem
      Radix is the second number following “MOD” in the ISO/IEC designation, f.i. 2 for "MOD 11-2"
      Specified by:
      getRadix in class IsoIec7064PureSystem
      Returns:
      the radix of the Check Digit routine
    • getCharacterSet

      protected String getCharacterSet()
      Description copied from class: IsoIec7064PureSystem
      MOD 11-2 check characters are “0” to “9” plus “X” for example.
      Specified by:
      getCharacterSet in class IsoIec7064PureSystem
      Returns:
      a String containing characters the check digit is build from. This can be IsoIecConstants.NUMERIC, IsoIecConstants.ALPHABETIC, IsoIecConstants.ALPHANUMERIC , IsoIecConstants.NUMERIC_PLUS_X, IsoIecConstants.ALPHANUMERIC_PLUS_STAR
    • toInt

      protected int toInt(char character, int leftPos, int rightPos) throws CheckDigitException
      Description copied from class: IsoIec7064PureSystem
      Convert a character at a specified position to an integer value.

      Note: this implementation only handlers numeric values For non-numeric characters, override this method to provide character-->integer conversion.

      Overrides to handle numeric, alphabetic or alphanumeric values respectively.

      Overrides:
      toInt in class IsoIec7064PureSystem
      Parameters:
      character - The character to convert
      leftPos - The position of the character in the code, counting from left to right (for identifiying the position in the string)
      rightPos - The position of the character in the code, counting from right to left (not used here)
      Returns:
      The integer value of the character
      Throws:
      CheckDigitException - if character is non-numeric