Class DecimalMaxValidator<T>

java.lang.Object
io.jmix.flowui.component.validation.AbstractValidator<T>
io.jmix.flowui.component.validation.DecimalMaxValidator<T>
All Implemented Interfaces:
Validator<T>, Consumer<T>, org.springframework.beans.factory.Aware, org.springframework.beans.factory.InitializingBean, org.springframework.context.ApplicationContextAware

@Component("flowui_DecimalMaxValidator") @Scope("prototype") public class DecimalMaxValidator<T> extends AbstractValidator<T>
  • Field Details

    • max

      protected BigDecimal max
    • inclusive

      protected boolean inclusive
  • Constructor Details

    • DecimalMaxValidator

      public DecimalMaxValidator()
    • DecimalMaxValidator

      public DecimalMaxValidator(BigDecimal max)
      Constructor with default error message.
      Parameters:
      max - max value
    • DecimalMaxValidator

      public DecimalMaxValidator(BigDecimal max, String message)
      Constructor with custom error message. This message can contain '${value}', and '${max}' keys for formatted output.

      Example: "Value '${value}' should be less than or equal to '${max}'".

      Parameters:
      max - max value
      message - error message
  • Method Details

    • setMax

      public void setMax(@Nullable BigDecimal max)
      Sets max value.
      Parameters:
      max - max value
    • getMax

      @Nullable public BigDecimal getMax()
      Returns:
      max value
    • setMax

      public void setMax(@Nullable BigDecimal max, boolean inclusive)
      Sets max value and inclusive option.
      Parameters:
      max - max value
      inclusive - inclusive option
    • setInclusive

      public void setInclusive(boolean inclusive)
      Set to true if the value must be less than or equal to the specified maximum. Default value is true.
      Parameters:
      inclusive - inclusive option
    • isInclusive

      public boolean isInclusive()
      Returns:
      true if the value must be less than or equal to the specified maximum
    • accept

      public void accept(@Nullable T value) throws ValidationException
      Description copied from interface: Validator
      Checks a value.
      Parameters:
      value - a value
      Throws:
      ValidationException
    • fireValidationException

      protected void fireValidationException(T value)