com.biz.verification.annotation.check.BizXCheckIntegerMin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-all Show documentation
Show all versions of biz-all Show documentation
BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。
The newest version!
package com.biz.verification.annotation.check;
import com.biz.verification.annotation.error.BizXCheckErrorMessage;
import com.biz.verification.error.constant.VerificationErrorConstant;
import java.lang.annotation.*;
/**
* 检查 Integer 类型最小值的注解。
* 用于标注字段或方法参数,指定该字段或参数的最小值。
*
*
* 示例用法:
* {@code
* public class Example {
* @BizXCheckIntegerMin(
* min = 1,
* error = @BizXCheckErrorMessage(code = 1007, message = "Value is below the minimum allowed")
* )
* private Integer value;
* }
* }
*
*
* @see BizXCheckErrorMessage
* @since 1.0.1
* @version 1.0.0
* @author francis
**/
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface BizXCheckIntegerMin {
/**
* 指定的最小值。
*
* @return 最小值,默认为 {@link Integer#MIN_VALUE}
*/
int min() default Integer.MIN_VALUE;
/**
* 自定义异常信息。
*
* @return 异常信息
*/
BizXCheckErrorMessage error() default @BizXCheckErrorMessage(
code = VerificationErrorConstant.CheckIntegerMinError.CODE,
message = VerificationErrorConstant.CheckIntegerMinError.MESSAGE);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy