Uses of Class
org.apache.commons.validator.routines.checkdigit.CheckDigitException

Packages that use CheckDigitException
Package
Description
This package contains Check Digit validation/calculation routines.
  • Uses of CheckDigitException in org.apache.commons.validator.routines.checkdigit

    Modifier and Type
    Method
    Description
    CheckDigit.calculate(String code)
    Calculates the Check Digit for a code.
    IBANCheckDigit.calculate(String code)
    Calculate the Check Digit for an IBAN code.
    IsoIec7064HybridSystem.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    IsoIec7064PurePolynomialSystem.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    IsoIec7064PureSystem.calculate(String code)
     
    IsoIecPure97System.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    Modulus97CheckDigit.calculate(String code)
     
    ModulusCheckDigit.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    VATidBECheckDigit.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    VATidELCheckDigit.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    VATidFICheckDigit.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    VATidGBCheckDigit.calculate(String code)
    Calculate a modulus Check Digit for a code which does not yet have one.
    protected int
    IsoIec7064HybridSystem.calculateModulus(String code, boolean includesCheckDigit)
    Calculate the modulus for a code.
    protected int
    IsoIec7064PurePolynomialSystem.calculateModulus(String code, boolean includesCheckDigit)
    Calculate the modulus for a code.
    protected int
    IsoIec7064PureSystem.calculateModulus(String code, boolean includesCheckDigit)
     
    protected int
    Modulus97CheckDigit.calculateModulus(String code, boolean includesCheckDigit)
     
    protected int
    ModulusCheckDigit.calculateModulus(String code, boolean includesCheckDigit)
    Calculate the modulus for a code.
    protected String
    IsoIec7064HybridSystem.toCheckDigit(int checkdigit)
     
    protected String
    IsoIec7064PureSystem.toCheckDigit(int checksum)
     
    protected String
    ModulusCheckDigit.toCheckDigit(int charValue)
    Convert an integer value to a check digit.
    protected String
    VATidGBCheckDigit.toCheckDigit(int checksum)
     
    protected int
    IsoIec7064HybridSystem.toInt(char character, int leftPos, int rightPos)
    Convert a character at a specified position to an integer value.
    protected int
    IsoIec7064PureSystem.toInt(char character, int leftPos, int rightPos)
    Convert a character at a specified position to an integer value.
    protected int
    IsoIecPolynomial11System.toInt(char character, int leftPos, int rightPos)
     
    protected int
    IsoIecPolynomial37System.toInt(char character, int leftPos, int rightPos)
     
    protected int
    IsoIecPure11System.toInt(char character, int leftPos, int rightPos)
     
    protected int
    IsoIecPure37System.toInt(char character, int leftPos, int rightPos)
     
    protected int
    Modulus97CheckDigit.toInt(char character, int leftPos, int rightPos)
     
    protected int
    ModulusCheckDigit.toInt(char character, int leftPos, int rightPos)
    Convert a character at a specified position to an integer value.
    protected int
    IsoIec7064HybridSystem.weightedValue(int charValue, int leftPos, int rightPos)
    Calculates the weighted value of a character in the code at a specified position.
    protected int
    IsoIec7064PurePolynomialSystem.weightedValue(int charValue, int leftPos, int rightPos)
     
    protected int
    IsoIec7064PureSystem.weightedValue(int charValue, int leftPos, int rightPos)
    Calculates the weighted value of a character in the code at a specified position.
    protected abstract int
    ModulusCheckDigit.weightedValue(int charValue, int leftPos, int rightPos)
    Calculates the weighted value of a character in the code at a specified position.