Annotation Type NonNull


@Target({METHOD,PARAMETER,FIELD}) @Retention(RUNTIME) @Documented @Nonnull @TypeQualifierNickname @Deprecated public @interface NonNull
Deprecated.
Use NonNull instead. To removed in 3.9.0 the earliest.
A common Reactor annotation (similar to Spring ones) to declare that annotated elements cannot be null. Leverages JSR 305 meta-annotations to indicate nullability in Java to common tools with JSR 305 support and used by Kotlin to infer nullability of Reactor API.

Should be used at parameter, return value, and field level. Methods overrides should repeat parent @NonNull annotations unless they behave differently.

Use @NonNullApi (scope = parameters + return values) to set the default behavior to non-nullable in order to avoid annotating your whole codebase with @NonNull.

Since:
3.1.0
Author:
Sebastien Deleuze, Juergen Hoeller
See Also: