checker.src.org.jetbrains.annotations.Nullable Maven / Gradle / Ivy
package org.jetbrains.annotations;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE})
public @interface Nullable {
String value() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy