- java.lang.Object
-
- io.rxmicro.validation.base.AbstractMinConstraintValidator<Long>
-
- io.rxmicro.validation.validator.MinLongConstraintValidator
-
- All Implemented Interfaces:
ConstraintValidator<Long>
public class MinLongConstraintValidator extends AbstractMinConstraintValidator<Long> implements ConstraintValidator<Long>
-
-
Constructor Summary
Constructors Constructor Description MinLongConstraintValidator(long minValue, boolean inclusive)Creates the default instance ofMinLongConstraintValidatorwith the specified parameters.MinLongConstraintValidator(String minValue, boolean inclusive)Creates the default instance ofMinLongConstraintValidatorwith 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
-
MinLongConstraintValidator
public MinLongConstraintValidator(long minValue, boolean inclusive)Creates the default instance ofMinLongConstraintValidatorwith the specified parameters.- Parameters:
minValue- the supported min value.inclusive- whether the specified minimum is inclusive or exclusive.
-
MinLongConstraintValidator
public MinLongConstraintValidator(String minValue, boolean inclusive)
Creates the default instance ofMinLongConstraintValidatorwith the specified parameters.- Parameters:
minValue- the supported min value.inclusive- whether the specified minimum is inclusive or exclusive.
-
-