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

com.centit.support.common.ParamName Maven / Gradle / Ivy

There is a newer version: 5.3.2302
Show newest version
package com.centit.support.common;

import java.lang.annotation.*;

/**
 * 为了兼容java8 以前的版本 在反射时无法获得参数的名称而天际的一个参数名称
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})

public @interface ParamName {
    /**
     * @return 参数名称
     */
    String value();

    /**
     * 是否可以为空
     *
     * @return true可以为空 false 不能为空
     */
    boolean nullable() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy