Package jakarta.validation.constraints
Annotation Type Digits
-
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE}) @Retention(RUNTIME) @Repeatable(List.class) @Documented @Constraint(validatedBy={}) public @interface Digits
The annotated element must be a number within accepted range.Supported types are:
BigDecimal
BigInteger
CharSequence
byte
,short
,int
,long
, and their respective wrapper types
null
elements are considered valid.- Author:
- Emmanuel Bernard