io.github.icodegarden.nutrient.lang.annotation.Nullable Maven / Gradle / Ivy
The newest version!
package io.github.icodegarden.nutrient.lang.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* @author Fangfang.Xu
*
*/
@Target({ ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Nullable {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy