Class VATidGBCheckDigit
java.lang.Object
org.apache.commons.validator.routines.checkdigit.ModulusCheckDigit
org.apache.commons.validator.routines.checkdigit.VATidGBCheckDigit
- All Implemented Interfaces:
Serializable
,CheckDigit
,IsoIecConstants
United Kingdom value added tax registration number
The VAT number can either be a 9-digit standard number, a 12-digit standard number followed by a 3-digit branch identifier, a 5-digit number for government departments (first two digits are GD) or a 5-digit number for health authorities (first two digits are HA). The 9-digit variants use a weighted checksum.
See Wikipedia - VAT IN for more details.
- Since:
- 1.10.0
- See Also:
-
Field Summary
Fields inherited from interface org.apache.commons.validator.routines.checkdigit.IsoIecConstants
ALPHABETIC, ALPHANUMERIC, ALPHANUMERIC_PLUS_STAR, MODULUS_1271, MODULUS_37, MODULUS_661, MODULUS_97, NUMERIC, NUMERIC_PLUS_X, RADIX_10, RADIX_2, RADIX_26, RADIX_36
-
Method Summary
Modifier and TypeMethodDescriptionCalculate a modulus Check Digit for a code which does not yet have one.protected String
int
static CheckDigit
Gets the singleton instance of this validator.protected int
getRadix()
boolean
Validate a modulus check digit for a code.protected String
toCheckDigit
(int checksum) Convert an integer value to a check digit.protected int
weightedValue
(int charValue, int leftPos, int rightPos) Calculates the weighted value of a character in the code at a specified position.Methods inherited from class org.apache.commons.validator.routines.checkdigit.ModulusCheckDigit
calculateModulus, getModulus, sumDigits, toInt
-
Method Details
-
getInstance
Gets the singleton instance of this validator.- Returns:
- A singleton instance of the class.
-
getCheckdigitLength
public int getCheckdigitLength() -
getRadix
protected int getRadix() -
getCharacterSet
-
weightedValue
protected int weightedValue(int charValue, int leftPos, int rightPos) Calculates the weighted value of a character in the code at a specified position.For VATID digits are weighted by their position from left to right.
- Specified by:
weightedValue
in classModulusCheckDigit
- Parameters:
charValue
- The numeric value of the character.leftPos
- The position of the character in the code, counting from left to rightrightPos
- The position of the character in the code, counting from right to left- Returns:
- The weighted value of the character.
-
toCheckDigit
Description copied from class:ModulusCheckDigit
Convert an integer value to a check digit.Note: this implementation only handles single-digit numeric values For non-numeric characters, override this method to provide integer-->character conversion.
- Overrides:
toCheckDigit
in classModulusCheckDigit
- Parameters:
checksum
- The integer value of the character- Returns:
- The converted character
- Throws:
CheckDigitException
- if integer character value doesn't represent a numeric character
-
calculate
Calculate a modulus Check Digit for a code which does not yet have one.Overridden to handle two digits as Check Digit and MOD 9755
- Specified by:
calculate
in interfaceCheckDigit
- Overrides:
calculate
in classModulusCheckDigit
- Parameters:
code
- The code for which to calculate the Check Digit; the check digit should not be included- Returns:
- The calculated Check Digit
- Throws:
CheckDigitException
- if an error occurs calculating the check digit
-
isValid
Validate a modulus check digit for a code.Overridden to handle two digits as Check Digit, ignore tree branch digits and MOD 9755
- Specified by:
isValid
in interfaceCheckDigit
- Overrides:
isValid
in classModulusCheckDigit
- Parameters:
ocode
- The code to validate- Returns:
true
if the check digit is valid, otherwisefalse
-