Annotation Interface DynamicRange


@Retention(RUNTIME) @Target(PARAMETER) public @interface DynamicRange
Used to specify min and max field values of numerical.
Since:
3.0.0
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    @NonNull String
    Return the maximum field value accepted by the parser.
    @NonNull String
    Return the minimum field value accepted by the parser.
  • Element Details

    • min

      @NonNull String min
      Return the minimum field value accepted by the parser.
      Returns:
      minimum field value
      Since:
      3.0.0
      Default:
      ""
    • max

      @NonNull String max
      Return the maximum field value accepted by the parser.
      Returns:
      maximum field value
      Since:
      3.0.0
      Default:
      ""