Package io.avaje.validation.constraints
Annotation Interface DecimalMin
@Target({METHOD,FIELD,ANNOTATION_TYPE,PARAMETER,TYPE_USE})
@Retention(RUNTIME)
@Repeatable(List.class)
public @interface DecimalMin
The annotated element must be a number whose value must be higher or equal to the specified
minimum.
Supported types are:
BigDecimalBigIntegerCharSequencebyte,short,int,long, and their respective wrappers
double and float are not supported due to rounding errors (some
providers might provide some approximative support).
null elements are considered valid.
- Author:
- Emmanuel Bernard
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interfaceDefines severalDecimalMinannotations on the same element. -
Required Element Summary
Required Elements -
Optional Element Summary
Optional Elements
-
Element Details
-
message
String message- Default:
"{avaje.DecimalMin.message}"
-
groups
Class<?>[] groups- Default:
{}
-
value
String valueTheStringrepresentation of the max value according to theBigDecimalstring representation.- Returns:
- value the element must be lower or equal to
-
inclusive
boolean inclusiveSpecifies whether the specified maximum is inclusive or exclusive. By default, it is inclusive.- Returns:
trueif the value must be lower or equal to the specified maximum,falseif the value must be lower- Since:
- 1.1
- Default:
true
-