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