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

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

package com.github.azbh111.utils.java.annotation;

import java.lang.annotation.*;

/**
 * 仅用来标记可null
 */
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Nullable {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy