Annotation Interface Validation.Integer.MultipleOf

Enclosing class:
Validation.Integer

@Target({METHOD,PARAMETER,ANNOTATION_TYPE,TYPE_USE,RECORD_COMPONENT}) @Constraint public static @interface Validation.Integer.MultipleOf
The value must be a multiple of the specified value().

Bytes are considered unsigned values (always between 0 and 255 inclusive).

  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    int
    Positive factor.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Message to return instead of the default one of the validator.
  • Element Details

    • message

      String message
      Message to return instead of the default one of the validator. The message can be a string format, where the first (and only) parameter will be the actual value that is being validated.
      Returns:
      message to describe the constraint validation error
      Default:
      ""
    • value

      int value
      Positive factor.
      Returns:
      the factor the value must be divisible by