jakarta.validation.constraints.Max Maven / Gradle / Ivy
/*
* Jakarta Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package jakarta.validation.constraints;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE_USE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import jakarta.validation.Constraint;
import jakarta.validation.Payload;
import jakarta.validation.constraints.Max.List;
/**
* The annotated element must be a number whose value must be lower or
* equal to the specified maximum.
*
* Supported types are:
*
* - {@code BigDecimal}
* - {@code BigInteger}
* - {@code byte}, {@code short}, {@code int}, {@code long}, and their respective
* wrappers
*
* Note that {@code double} and {@code float} are not supported due to rounding errors
* (some providers might provide some approximative support).
*
* {@code null} elements are considered valid.
*
* @author Emmanuel Bernard
*/
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE })
@Retention(RUNTIME)
@Repeatable(List.class)
@Documented
@Constraint(validatedBy = { })
public @interface Max {
String message() default "{jakarta.validation.constraints.Max.message}";
Class>[] groups() default { };
Class extends Payload>[] payload() default { };
/**
* @return value the element must be lower or equal to
*/
long value();
/**
* Defines several {@link Max} annotations on the same element.
*
* @see Max
*/
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE })
@Retention(RUNTIME)
@Documented
@interface List {
Max[] value();
}
}