Module rxmicro.validation
Package io.rxmicro.validation.validator
Class MaxDoubleConstraintValidator
- java.lang.Object
-
- io.rxmicro.validation.base.AbstractMaxConstraintValidator<Double>
-
- io.rxmicro.validation.validator.MaxDoubleConstraintValidator
-
- All Implemented Interfaces:
ConstraintValidator<Double>
public class MaxDoubleConstraintValidator extends AbstractMaxConstraintValidator<Double> implements ConstraintValidator<Double>
-
-
Constructor Summary
Constructors Constructor Description MaxDoubleConstraintValidator(double maxValue)Creates the default instance ofMaxDoubleConstraintValidatorwith the specified parameters.MaxDoubleConstraintValidator(String maxValue, boolean inclusive)Creates the default instance ofMaxDoubleConstraintValidatorwith the specified parameters.
-
Method Summary
-
Methods inherited from class io.rxmicro.validation.base.AbstractMaxConstraintValidator
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
-
MaxDoubleConstraintValidator
public MaxDoubleConstraintValidator(double maxValue)
Creates the default instance ofMaxDoubleConstraintValidatorwith the specified parameters.- Parameters:
maxValue- the supported max value.
-
MaxDoubleConstraintValidator
public MaxDoubleConstraintValidator(String maxValue, boolean inclusive)
Creates the default instance ofMaxDoubleConstraintValidatorwith the specified parameters.- Parameters:
maxValue- the supported max value.inclusive- whether the specified minimum is inclusive or exclusive.
-
-