icasue.reflect.annotations.Nullable Maven / Gradle / Ivy
package icasue.reflect.annotations;
import java.lang.annotation.*;
/**
* @Author: Qiao Hang
* @CreateDate: 2021/1/29 上午10:19
* @UpdateDate:
* @Description:
*/
@Target({ElementType.METHOD,ElementType.PARAMETER,ElementType.FIELD,ElementType.LOCAL_VARIABLE})
@Retention(RetentionPolicy.SOURCE)
@Inherited
public @interface Nullable {
}