Package jakarta.validation.constraints
Annotation Type DecimalMin
- 
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE}) @Retention(RUNTIME) @Repeatable(List.class) @Documented @Constraint(validatedBy={}) 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
doubleandfloatare not supported due to rounding errors (some providers might provide some approximative support).nullelements are considered valid.- Author:
 - Emmanuel Bernard
 
 
- 
- 
Element Detail
- 
value
String value
TheStringrepresentation of the min value according to theBigDecimalstring representation.- Returns:
 - value the element must be higher or equal to
 
 
 - 
 
- 
- 
message
String message
- Default:
 - "{jakarta.validation.constraints.DecimalMin.message}"
 
 
 - 
 
- 
- 
groups
Class<?>[] groups
- Default:
 - {}
 
 
 - 
 
 -