Interface IParameterValidator

All Known Subinterfaces:
IParameterValidator2
All Known Implementing Classes:
NoValidator, PositiveInteger

public interface IParameterValidator
The class used to validate parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    validate(String name, String value)
    Validate the parameter.
  • Method Details

    • validate

      void validate(String name, String value) throws ParameterException
      Validate the parameter.
      Parameters:
      name - The name of the parameter (e.g. "-host").
      value - The value of the parameter that we need to validate
      Throws:
      ParameterException - Thrown if the value of the parameter is invalid.