Class NumberValidatorCall

java.lang.Object
com.aquima.interactions.framework.validator.ValidatorCallBase
com.aquima.interactions.framework.validator.NumberValidatorCall
All Implemented Interfaces:
IValidatorCall, Serializable

public class NumberValidatorCall extends ValidatorCallBase
Validator that uses a number range to validate the value of an attribute.
Since:
5.0
Author:
O. Kerpershoek
See Also:
  • Constructor Details

    • NumberValidatorCall

      public NumberValidatorCall(String name, IParameters parameters)
      Constructs the validator using a data-source.
      Parameters:
      name - The name of the validator type.
      parameters - Containing additional parameters for the validation.
  • Method Details

    • getValidRange

      public IRangeValue getValidRange()
      This method returns the range of values that are deemed valid.
      Returns:
      the range of values that are deemed valid.
    • validate

      public boolean validate(IValue attrValue)
      Description copied from interface: IValidatorCall
      This method will be invoked for each value that should be validated by this validator.
      Parameters:
      attrValue - The value that should be validated.
      Returns:
      Boolean indicating if the value is deemed valid by this validator.