com.github.azbh111.utils.java.annotation.Nonnull Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.annotation;
import java.lang.annotation.*;
/**
* 标记不可null, 但不会进行处理
* 如果参数为null, 结果是不可预知的
*/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Nonnull {
}