Description
If you try to validate a Value bigger than 9,223,372,036,854,775,807 it keeps valid.
for example with:
LongValidator longValidator = new LongValidator ( true, AbstractNumberValidator.STANDARD_FORMAT ); longValidator.isValid("9223372036854775808") // is true should be false max long is 9223372036854775807
even worse is that:
longValidator.validate ( "9999999999999999999999999999999999999")
will give you the long maxValue as Result.
The IntegerValidator will give you null and nonValid.