All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.validator.annotation.VRangeLength Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package cn.vonce.validator.annotation;

import cn.vonce.validator.rule.impl.ValidateRangeLength;

import java.lang.annotation.*;

/**
 * 校验长度范围
 *
 * @author Jovi
 * @version 1.0
 * @email [email protected]
 * @date 2017年4月20日下午9:59:26
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Documented
@Validate(type = ValidateRangeLength.class)
public @interface VRangeLength {

    /**
     * 字段名称
     *
     * @return
     * @author Jovi
     * @date 2017年4月21日上午11:56:34
     */
    String name() default "";

    /**
     * 是否只有不为空的时候才校验
     *
     * @return
     */
    boolean onlyWhenNotEmpty() default false;

    /**
     * 消息提示
     *
     * @return
     * @author Jovi
     * @date 2017年4月21日上午10:50:21
     */
    String value() default "";

    /**
     * 校验字段最大长度值
     *
     * @return
     * @author Jovi
     * @date 2017年4月21日上午10:50:11
     */
    int max();

    /**
     * 校验字段最小长度值
     *
     * @return
     * @author Jovi
     * @date 2017年4月21日上午10:50:16
     */
    int min();

    /**
     * 分组校验
     *
     * @return
     * @author Jovi
     * @date 2017年6月21日下午12:07:25
     */
    String[] group() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy