Package jakarta.validation.constraints
Annotation Type Max
- 
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE}) @Retention(RUNTIME) @Repeatable(List.class) @Documented @Constraint(validatedBy={}) public @interface MaxThe annotated element must be a number whose value must be lower or equal to the specified maximum.Supported types are:
BigDecimalBigIntegerbyte,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
 
 
- 
- 
- 
payload
java.lang.Class<? extends Payload>[] payload
- Default:
 - {}
 
 
 - 
 
 -