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

io.github.mmm.validation.number.ValidatorBuilderShort 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.number;

/**
 * The {@link NumberValidatorBuilder Validator builder} for {@link Short} values.
 *
 * @param  the generic type of the {@link #and() parent builder}.
 *
 * @since 1.0.0
 */
public class ValidatorBuilderShort
    extends NumberValidatorBuilder> {

  /**
   * The constructor.
   *
   * @param parent the {@link #and() parent} builder.
   */
  public ValidatorBuilderShort(PARENT parent) {

    super(parent);
  }

  /**
   * @see #range(io.github.mmm.base.range.Range)
   *
   * @param min the minimum allowed value.
   * @param max the maximum allowed value.
   * @return this build instance for fluent API calls.
   */
  public ValidatorBuilderShort range(short min, short max) {

    return range(Short.valueOf(min), Short.valueOf(max));
  }

  @Override
  protected Short parse(String string) {

    return Short.valueOf(string);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy