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

top.lingkang.finalsql.annotation.Nullable Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package top.lingkang.finalsql.annotation;

import java.lang.annotation.*;

/**
 * @author lingkang
 * Created by 2022/4/11
 * 声明某些情况下可能为空值
 */
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Nullable {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy