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

com.github.azbh111.utils.java.annotation.Nonnull Maven / Gradle / Ivy

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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy