Package jakarta.validation.constraints
Annotation Type DecimalMax
-
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE}) @Retention(RUNTIME) @Repeatable(List.class) @Documented @Constraint(validatedBy={}) public @interface DecimalMax
The annotated element must be a number whose value must be lower or equal to the specified maximum.Supported types are:
BigDecimal
BigInteger
CharSequence
byte
,short
,int
,long
, and their respective wrappers
double
andfloat
are not supported due to rounding errors (some providers might provide some approximative support).null
elements are considered valid.- Author:
- Emmanuel Bernard
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String
value
TheString
representation of the max value according to theBigDecimal
string representation.
-
-
-
-
payload
java.lang.Class<? extends Payload>[] payload
- Default:
- {}
-
-