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

com.beust.jcommander.IValueValidator Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
package com.beust.jcommander;

public interface IValueValidator {
  /**
   * Validate the parameter.
   *
   * @param name The name of the parameter (e.g. "-host").
   * @param value The value of the parameter that we need to validate
   *
   * @throws ParameterException Thrown if the value of the parameter is invalid.
   */
  void validate(String name, T value) throws ParameterException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy