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

Packages that use CheckDigitException
org.apache.commons.validator.routines.checkdigit This package contains Check Digit validation/calculation routines. 
 

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

Methods in org.apache.commons.validator.routines.checkdigit that throw CheckDigitException
 String CheckDigit.calculate(String code)
          Calculate the Check Digit for a code.
 String ModulusCheckDigit.calculate(String code)
          Calculate a modulus Check Digit for a code.
 String VerhoeffCheckDigit.calculate(String code)
          Calculate a Verhoeff Check Digit for a code.
 String ISBNCheckDigit.calculate(String code)
          Calculate an ISBN-10 or ISBN-13 check digit, depending on the length of the code.
protected  int ModulusCheckDigit.calculateModulus(String code, boolean includesCheckDigit)
          Calculate the modulus for a code.
protected  String ModulusCheckDigit.toCheckDigit(int charValue)
          Convert an integer value to a check digit.
protected  String ISBN10CheckDigit.toCheckDigit(int charValue)
          Convert an integer value to a character at a specified position.
protected  int ModulusCheckDigit.toInt(char character, int leftPos, int rightPos)
          Convert a character at a specified position to an integer value.
protected  int ISBN10CheckDigit.toInt(char character, int leftPos, int rightPos)
          Convert a character at a specified position to an integer value.
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.
 



Copyright © 2002-2010 Apache Software Foundation. All Rights Reserved.