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

io.github.mmm.validation.range.ValidatorBuilderRange 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.validation.main.ObjectValidatorBuilder;
import io.github.mmm.validation.string.CharSequenceValidatorBuilder;

/**
 * {@link CharSequenceValidatorBuilder Validator builder} for {@link String}.
 *
 * @param  type of the {@link Range} bounds.
 * @param  the generic type of the {@link #and() parent builder}.
 *
 * @since 1.0.0
 */
public class ValidatorBuilderRange, PARENT>
    extends ObjectValidatorBuilder, PARENT, ValidatorBuilderRange> {

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

    super(parent);
  }

  @Override
  public ValidatorBuilderRange range(String min, String max) {

    throw new UnsupportedOperationException();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy