All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mmm.validation.range.ValidatorRange Maven / Gradle / Ivy

The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.validation.range;

import io.github.mmm.base.range.Range;
import io.github.mmm.base.range.RangeType;
import io.github.mmm.validation.main.AbstractValidatorRange;

/**
 * {@link io.github.mmm.validation.Validator} {@link #validate(Object, Object) validating} that a given value is within
 * a specific {@link Range}.
 *
 * @param  is the generic type of the value to {@link #validate(Object) validate}.
 *
 * @since 1.0.0
 */
@SuppressWarnings("unchecked")
public class ValidatorRange> extends AbstractValidatorRange {

  /**
   * The constructor.
   *
   * @param range is the {@link Range} the value has to be within.
   */
  public ValidatorRange(Range range) {

    super(range);
  }

  /**
   * The constructor.
   *
   * @param min is the {@link Range#getMin() minimum} value allowed.
   * @param max is the {@link Range#getMax() maximum} value allowed.
   */
  public ValidatorRange(V min, V max) {

    this(RangeType.of(min, max));
  }

  @Override
  protected final boolean isLength() {

    return false;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy