Package io.micrometer.core.lang
Annotation Interface NonNullFields
@Target({PACKAGE,TYPE})
@Retention(RUNTIME)
@Documented
@Nonnull
@TypeQualifierDefault(FIELD)
@Deprecated
public @interface NonNullFields
Deprecated.
A common annotation to declare that fields are to be considered as non-nullable by
default for a given package.
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 the API.
Should be used at package level in association with Nullable
annotations at
field level.
NOTE: This file has been copied from org.springframework.lang
.
- See Also:
NonNullApi
instead.