This repository was archived by the owner on Mar 30, 2020. It is now read-only.
1.0.0 – Base Release
- Indicate a field/method to be nullable if
@Null
is present - Indicate a field/method to be not nullable if
@NotNull
,@NotEmpty
or@NotBlank
is present - Indicate an array's "minItems" according to
@Size
or@NotEmpty
- Indicate an array's "maxItems" according to
@Size
- Indicate a string's "minLength" according to
@Size
,@NotEmpty
or@NotBlank
- Indicate a string's "maxLength" according to
@Size
- Indicate a number's "minimum" (inclusive) according to
@Min
,@DecimalMin
or@PositiveOrZero
- Indicate a number's "exclusiveMinimum" according to
@DecimalMin
or@Positive
- Indicate a number's "maximum" (inclusive) according to
@Max
,@DecimalMax
or@NegativeOrZero
- Indicate a number's "exclusiveMaximum" according to
@DecimalMax
or@Negative