|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CheckDigit | |
---|---|
org.apache.commons.validator.routines | This package contains independant validation routines. |
org.apache.commons.validator.routines.checkdigit | This package contains Check Digit validation/calculation routines. |
Uses of CheckDigit in org.apache.commons.validator.routines |
---|
Methods in org.apache.commons.validator.routines that return CheckDigit | |
---|---|
CheckDigit |
CodeValidator.getCheckDigit()
Return the check digit validation routine. |
Constructors in org.apache.commons.validator.routines with parameters of type CheckDigit | |
---|---|
CodeValidator(RegexValidator regexValidator,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression, validator and CheckDigit validation. |
|
CodeValidator(RegexValidator regexValidator,
int length,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression, validator, length and CheckDigit validation. |
|
CodeValidator(RegexValidator regexValidator,
int minLength,
int maxLength,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression validator, minimum/maximum length and CheckDigit validation. |
|
CodeValidator(String regex,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression and CheckDigit . |
|
CodeValidator(String regex,
int length,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression, length and CheckDigit . |
|
CodeValidator(String regex,
int minLength,
int maxLength,
CheckDigit checkdigit)
Construct a code validator with a specified regular expression, minimum/maximum length and CheckDigit validation. |
Uses of CheckDigit in org.apache.commons.validator.routines.checkdigit |
---|
Classes in org.apache.commons.validator.routines.checkdigit that implement CheckDigit | |
---|---|
class |
EAN13CheckDigit
Modulus 10 EAN-13 / UPC / ISBN-13 Check Digit calculation/validation. |
class |
ISBN10CheckDigit
Modulus 11 ISBN-10 Check Digit calculation/validation. |
class |
ISBNCheckDigit
Combined ISBN-10 / ISBN-13 Check Digit calculation/validation. |
class |
LuhnCheckDigit
Modulus 10 Luhn Check Digit calculation/validation. |
class |
ModulusCheckDigit
Abstract Modulus Check digit calculation/validation. |
class |
VerhoeffCheckDigit
Verhoeff (Dihedral) Check Digit calculation/validation. |
Fields in org.apache.commons.validator.routines.checkdigit declared as CheckDigit | |
---|---|
static CheckDigit |
VerhoeffCheckDigit.INSTANCE
Singleton Verhoeff Check Digit instance |
static CheckDigit |
EAN13CheckDigit.INSTANCE
Singleton EAN-13 Check Digit instance |
static CheckDigit |
ISBN10CheckDigit.INSTANCE
Singleton ISBN-10 Check Digit instance |
static CheckDigit |
LuhnCheckDigit.INSTANCE
Singleton Luhn Check Digit instance |
static CheckDigit |
ISBNCheckDigit.ISBN
Singleton combined ISBN-10 / ISBN-13 Check Digit instance |
static CheckDigit |
ISBNCheckDigit.ISBN10
Singleton ISBN-10 Check Digit instance |
static CheckDigit |
ISBNCheckDigit.ISBN13
Singleton ISBN-13 Check Digit instance |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |