Class CreditCardValidator
- All Implemented Interfaces:
Serializable
By default, AMEX + VISA + MASTERCARD + DISCOVER card types are allowed. You can specify which cards should pass validation by configuring the validation options. For example,
CreditCardValidator ccv = new CreditCardValidator(CreditCardValidator.AMEX + CreditCardValidator.VISA);
configures the validator to only pass American Express and Visa cards.
If a card type is not directly supported by this class, you can create an
instance of the CodeValidator
class and pass it to a CreditCardValidator
constructor along with any existing validators. For example:
CreditCardValidator ccv = new CreditCardValidator(
new CodeValidator[] {
CreditCardValidator.AMEX_VALIDATOR,
CreditCardValidator.VISA_VALIDATOR,
new CodeValidator("^(4)(\\d{12,18})$", LUHN_VALIDATOR) // add VPAY
};
Alternatively you can define a validator using the CreditCardValidator.CreditCardRange
class.
For example:
CreditCardValidator ccv = new CreditCardValidator(
new CreditCardRange[]{
new CreditCardRange("300", "305", 14, 14), // Diners
new CreditCardRange("3095", null, 14, 14), // Diners
new CreditCardRange("36", null, 14, 14), // Diners
new CreditCardRange("38", "39", 14, 14), // Diners
new CreditCardRange("4", null, new int[] {13, 16}), // VISA
}
);
This can be combined with a list of CodeValidator
s
More information can be found in Michael Gilleland's essay Anatomy of Credit Card Numbers.
- Since:
- 1.4
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Class that represents a credit card range. -
Field Summary
Modifier and TypeFieldDescriptionstatic final long
Option specifying that American Express cards are allowed.static final CodeValidator
American Express (Amex) Card Validator 34xxxx (15) 37xxxx (15)static final long
Option specifying that Diners cards are allowed.static final CodeValidator
Diners Card Validator 300xxx - 305xxx (14) 3095xx (14) 36xxxx (14) 38xxxx (14) 39xxxx (14)static final long
Option specifying that Discover cards are allowed.static final CodeValidator
Discover Card Validatorstatic final long
Option specifying that Mastercard cards are allowed.static final long
Deprecated.for use until Oct 2016 onlystatic final CodeValidator
Mastercard Card Validatorstatic final CodeValidator
Deprecated.for use until Oct 2016 onlystatic final long
Option specifying that no cards are allowed.static final long
Option specifying that Visa cards are allowed.static final CodeValidator
Visa Card Validatorstatic final long
Option specifying that VPay (Visa) cards are allowed.static final CodeValidator
VPay (Visa) Card Validator -
Constructor Summary
ConstructorDescriptionConstructs a new CreditCardValidator with default options.CreditCardValidator
(long options) Constructs a new CreditCardValidator with the specified options.CreditCardValidator
(CodeValidator[] creditCardValidators) Constructs a new CreditCardValidator with the specifiedCodeValidator
s.CreditCardValidator
(CodeValidator[] creditCardValidators, CreditCardValidator.CreditCardRange[] creditCardRanges) Constructs a new CreditCardValidator with the specifiedCodeValidator
s andCreditCardValidator.CreditCardRange
s.CreditCardValidator
(CreditCardValidator.CreditCardRange[] creditCardRanges) Constructs a new CreditCardValidator with the specifiedCreditCardValidator.CreditCardRange
s. -
Method Summary
Modifier and TypeMethodDescriptionstatic CreditCardValidator
Creates a new generic CreditCardValidator which validates the syntax and check digit only.static CreditCardValidator
genericCreditCardValidator
(int length) Creates a new generic CreditCardValidator which validates the syntax and check digit only.static CreditCardValidator
genericCreditCardValidator
(int minLen, int maxLen) Creates a new generic CreditCardValidator which validates the syntax and check digit only.boolean
Checks if the field is a valid credit card number.Checks if the field is a valid credit card number.
-
Field Details
-
NONE
Option specifying that no cards are allowed. This is useful if you want only custom card types to validate so you turn off the default cards with this option.CreditCardValidator v = new CreditCardValidator(CreditCardValidator.NONE); v.addAllowedCardType(customType); v.isValid(aCardNumber);
- See Also:
-
AMEX
Option specifying that American Express cards are allowed.- See Also:
-
VISA
Option specifying that Visa cards are allowed.- See Also:
-
MASTERCARD
Option specifying that Mastercard cards are allowed.- See Also:
-
DISCOVER
Option specifying that Discover cards are allowed.- See Also:
-
DINERS
Option specifying that Diners cards are allowed.- See Also:
-
VPAY
Option specifying that VPay (Visa) cards are allowed.- Since:
- 1.5.0
- See Also:
-
MASTERCARD_PRE_OCT2016
Deprecated.for use until Oct 2016 onlyOption specifying that Mastercard cards (pre Oct 2016 only) are allowed.- See Also:
-
AMEX_VALIDATOR
American Express (Amex) Card Validator- 34xxxx (15)
- 37xxxx (15)
-
DINERS_VALIDATOR
Diners Card Validator- 300xxx - 305xxx (14)
- 3095xx (14)
- 36xxxx (14)
- 38xxxx (14)
- 39xxxx (14)
-
DISCOVER_VALIDATOR
Discover Card Validator -
MASTERCARD_VALIDATOR
Mastercard Card Validator -
MASTERCARD_VALIDATOR_PRE_OCT2016
Deprecated.for use until Oct 2016 onlyMastercard Card Validator (pre Oct 2016) -
VISA_VALIDATOR
Visa Card Validator4xxxxx (13 or 16)
-
VPAY_VALIDATOR
VPay (Visa) Card Validator4xxxxx (13-19)
- Since:
- 1.5.0
-
-
Constructor Details
-
CreditCardValidator
public CreditCardValidator()Constructs a new CreditCardValidator with default options. The default options are: AMEX, VISA, MASTERCARD and DISCOVER -
CreditCardValidator
Constructs a new CreditCardValidator with the specifiedCodeValidator
s.- Parameters:
creditCardValidators
- Set of valid code validators
-
CreditCardValidator
public CreditCardValidator(CodeValidator[] creditCardValidators, CreditCardValidator.CreditCardRange[] creditCardRanges) Constructs a new CreditCardValidator with the specifiedCodeValidator
s andCreditCardValidator.CreditCardRange
s.This can be used to combine predefined validators such as
MASTERCARD_VALIDATOR
with additional validators using the simplerCreditCardValidator.CreditCardRange
s.- Parameters:
creditCardValidators
- Set of valid code validatorscreditCardRanges
- Set of valid code validators- Since:
- 1.6
-
CreditCardValidator
Constructs a new CreditCardValidator with the specifiedCreditCardValidator.CreditCardRange
s.- Parameters:
creditCardRanges
- Set of valid code validators- Since:
- 1.6
-
CreditCardValidator
Constructs a new CreditCardValidator with the specified options.- Parameters:
options
- Pass in CreditCardValidator.VISA + CreditCardValidator.AMEX to specify that those are the only valid card types.
-
-
Method Details
-
genericCreditCardValidator
Creates a new generic CreditCardValidator which validates the syntax and check digit only. Does not check the Issuer Identification Number (IIN)- Returns:
- the validator
- Since:
- 1.6
-
genericCreditCardValidator
Creates a new generic CreditCardValidator which validates the syntax and check digit only. Does not check the Issuer Identification Number (IIN)- Parameters:
length
- exact length- Returns:
- the validator
- Since:
- 1.6
-
genericCreditCardValidator
Creates a new generic CreditCardValidator which validates the syntax and check digit only. Does not check the Issuer Identification Number (IIN)- Parameters:
minLen
- minimum allowed lengthmaxLen
- maximum allowed length- Returns:
- the validator
- Since:
- 1.6
-
isValid
Checks if the field is a valid credit card number.- Parameters:
card
- The card number to validate.- Returns:
- Whether the card number is valid.
-
validate
Checks if the field is a valid credit card number.- Parameters:
card
- The card number to validate.- Returns:
- The card number if valid or
null
if invalid.
-