- java.lang.Object
-
- io.rxmicro.validation.base.AbstractMinConstraintValidator<Integer>
-
- io.rxmicro.validation.validator.MinIntConstraintValidator
-
- All Implemented Interfaces:
ConstraintValidator<Integer>
public class MinIntConstraintValidator extends AbstractMinConstraintValidator<Integer> implements ConstraintValidator<Integer>
-
-
Constructor Summary
Constructors Constructor Description MinIntConstraintValidator(long minValue, boolean inclusive)Creates the default instance ofMinIntConstraintValidatorwith the specified parameters.MinIntConstraintValidator(String minValue, boolean inclusive)Creates the default instance ofMinIntConstraintValidatorwith the specified parameters.
-
Method Summary
-
Methods inherited from class io.rxmicro.validation.base.AbstractMinConstraintValidator
validate, validate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.rxmicro.validation.ConstraintValidator
validate, validate, validateList, validateList
-
-
-
-
Constructor Detail
-
MinIntConstraintValidator
public MinIntConstraintValidator(long minValue, boolean inclusive)Creates the default instance ofMinIntConstraintValidatorwith the specified parameters.- Parameters:
minValue- the supported min value.inclusive- whether the specified minimum is inclusive or exclusive.
-
MinIntConstraintValidator
public MinIntConstraintValidator(String minValue, boolean inclusive)
Creates the default instance ofMinIntConstraintValidatorwith the specified parameters.- Parameters:
minValue- the supported min value.inclusive- whether the specified minimum is inclusive or exclusive.
-
-