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

net.unmz.java.util.data.ValidateLength Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
package net.unmz.java.util.data;

import java.lang.annotation.*;

/**
 * Project Name:
 * 功能描述:
 *
 * @author [email protected]
 * @version 1.0
 * @date 2018-10-15 11:41
 * @since JDK 1.8
 */
@Target({ElementType.FIELD, ElementType.TYPE, ElementType.PARAMETER})
@Inherited
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface ValidateLength {

    int value() default Integer.MAX_VALUE;

    boolean nullable() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy