Package io.avaje.lang
Annotation Type Nullable
-
@Target({METHOD,PARAMETER,FIELD}) @Retention(CLASS) @Documented @Nonnull(when=MAYBE) @TypeQualifierNickname public @interface Nullable
A common annotation to declare that annotated elements can benull.Leverages JSR-305 meta-annotations to indicate nullability in Java to common tools with JSR-305 support and used by Kotlin to infer nullability.
Should be used at parameter, return value, and field level. Methods override should repeat parent
@Nullableannotations unless they behave differently.Can be used in association with
@NonNullApito override the default non-nullable semantic to nullable.