public static class CreditCardValidator.CreditCardRange extends Object
Constructor | Description |
---|---|
CreditCardRange(String low,
String high,
int[] lengths) |
Create a credit card range specifier for use in validation
of the number syntax including the IIN range.
|
CreditCardRange(String low,
String high,
int minLen,
int maxLen) |
Create a credit card range specifier for use in validation
of the number syntax including the IIN range.
|
public CreditCardRange(String low, String high, int minLen, int maxLen)
The low and high parameters may be shorter than the length
of an IIN (currently 6 digits) in which case subsequent digits
are ignored and may range from 0-9.
The low and high parameters may be different lengths.
e.g. Discover "644" and "65".
low
- the low digits of the IIN rangehigh
- the high digits of the IIN rangeminLen
- the minimum length of the entire numbermaxLen
- the maximum length of the entire numberpublic CreditCardRange(String low, String high, int[] lengths)
The low and high parameters may be shorter than the length
of an IIN (currently 6 digits) in which case subsequent digits
are ignored and may range from 0-9.
The low and high parameters may be different lengths.
e.g. Discover "644" and "65".
low
- the low digits of the IIN rangehigh
- the high digits of the IIN rangelengths
- array of valid lengthsCopyright © 2002–2018. All rights reserved.