/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
 */
package org.hibernate.validator.internal.constraintvalidators.bv.number.bound;

import org.hibernate.validator.internal.constraintvalidators.bv.number.InfinityNumberComparatorHelper;

Check that the number being validated is greater than or equal to the minimum value specified.
Author:Marko Bekhta
/** * Check that the number being validated is greater than or equal to the minimum * value specified. * * @author Marko Bekhta */
public class MinValidatorForDouble extends AbstractMinValidator<Double> { @Override protected int compare(Double number) { return NumberComparatorHelper.compare( number, minValue, InfinityNumberComparatorHelper.LESS_THAN ); } }