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
@Nullis present - Indicate a field/method to be not nullable if
@NotNull,@NotEmptyor@NotBlankis present - Indicate an array's "minItems" according to
@Sizeor@NotEmpty - Indicate an array's "maxItems" according to
@Size - Indicate a string's "minLength" according to
@Size,@NotEmptyor@NotBlank - Indicate a string's "maxLength" according to
@Size - Indicate a number's "minimum" (inclusive) according to
@Min,@DecimalMinor@PositiveOrZero - Indicate a number's "exclusiveMinimum" according to
@DecimalMinor@Positive - Indicate a number's "maximum" (inclusive) according to
@Max,@DecimalMaxor@NegativeOrZero - Indicate a number's "exclusiveMaximum" according to
@DecimalMaxor@Negative