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