com.github.ldeitos.constraint.Max Maven / Gradle / Ivy
Show all versions of extendedValidation-core Show documentation
package com.github.ldeitos.constraint;
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.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import jakarta.validation.Constraint;
import jakarta.validation.Payload;
import com.github.ldeitos.validators.MaxValidator;
/**
* 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})
@Retention(RUNTIME)
@Documented
@Constraint(validatedBy = {MaxValidator.class })
public @interface Max {
String message() default "{jakarta.validation.constraints.Max.message}";
/**
* @return Parameter array to be interpolated at message. Parameters can be informed in
* "key=value" or just "value" pattern.
* e.g:
*
* message="My {par1} message"
* messageParameters = {"par1=parameterized"}
*
* message="My {0} message"
* messageParameters = {"parameterized"}
*/
String[] messageParameters() default {};
Class>[] groups() default { };
Class extends Payload>[] payload() default { };
/**
* @return value the element must be higher or equal to
*/
long value();
/**
* Defines several {@link Max} annotations on the same element.
*
* @see Max
*/
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
@Retention(RUNTIME)
@Documented
@interface List {
Max[] value();
}
}