Class LengthRangeValidator

All Implemented Interfaces:
HasHandlers

public class LengthRangeValidator extends Validator
This validator type applies to string values only. If the value is a string value validation will fail if the strings length falls outside the range specified by validator.max and validator.min. Note that non-string values will always pass validation by this validator type.
  • Constructor Details

    • LengthRangeValidator

      public LengthRangeValidator()
  • Method Details

    • setMin

      public void setMin(Integer min)
      Set the min.
      Parameters:
      min - the min
    • getMin

      public Integer getMin()
      Return the min.
      Returns:
      the min
    • setMax

      public void setMax(Integer max)
      Set the max.
      Parameters:
      max - the max
    • getMax

      public Integer getMax()
      Return the max.
      Returns:
      the max