top.lingkang.finalvalidated.constraints.Min Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of final-validator Show documentation
Show all versions of final-validator Show documentation
final-validator 是一个JavaBean元数据校验模型和方法验证,能够自定义注解来扩展校验范围,符合国内开发习惯的参数校验java库
The newest version!
package top.lingkang.finalvalidated.constraints;
import java.lang.annotation.*;
/**
* @author lingkang
* created by 2024/1/27
* 注解的属性最小值,字段大于等于此值
* 若对象为空时,将会抛出异常
* 类型:short, int, long、float、double及其包装类、BigDecimal
* 默认返回 {字段名称} 不能小于 {value}
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Min {
/**
* 校验值,不能小于此值。例如 value=1,则0不符合,1、2符合
*/
long value() default 0;
/**
* 校验失败时返回的消息,返回例示 message
*/
String message() default "";
/**
* 校验失败时返回的消息,优先级比 message 高,返回例示 {tag} 不能小于 {value}
*/
String tag() default "";
}