-
@Documented @Retention(SOURCE) @Target({FIELD,METHOD,PARAMETER}) @ConstraintRule(supportedTypes={java.lang.Byte.class,java.lang.Short.class,java.lang.Integer.class,java.lang.Long.class}, validatorClass={MinByteConstraintValidator.class,MinShortConstraintValidator.class,MinIntConstraintValidator.class,MinLongConstraintValidator.class}) public @interface MinInt
The annotated element must be a byte or short or integer or long whose value must be higher or equal to the specified minimum.- Since:
- 0.1
- Author:
- nedis
- See Also:
MinDouble,MinNumber,MinByteConstraintValidator,MinShortConstraintValidator,MaxIntConstraintValidator,MinLongConstraintValidator
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description longvalueReturns the value the element must be higher or equal to.
-