From e64c6b5879d36d45ec6a768ff907b7857a2ee217 Mon Sep 17 00:00:00 2001
From: Rawi01
- Many flavors are available: lombok.addNullAnnotations = <flavor>
javax
(=JSR305; not recommended), eclipse
, jetbrains
, netbeans
, androidx
, android.support
(deprecated within android), checkerframework
(recommended), findbugs
, spring
, jml
, or define your own via CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation
; if your nullity annotation is solely of the type use style (it annotates types, such as eclipse's and checkerframework's offerings, versus annotating methods and parameters), the format is CUSTOM:TYPE_USE:nonnullanno:nullableanno
.
+ Many flavors are available: javax
(=JSR305; not recommended), jakarta
, eclipse
, jetbrains
, netbeans
, androidx
, android.support
(deprecated within android), checkerframework
(recommended), findbugs
, spring
, jml
, or define your own via CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation
; if your nullity annotation is solely of the type use style (it annotates types, such as eclipse's and checkerframework's offerings, versus annotating methods and parameters), the format is CUSTOM:TYPE_USE:nonnullanno:nullableanno
.
This feature was added in lombok v1.18.12.
Lombok can be configured to add @lombok.Generated
annotations to all generated nodes where possible; useful for JaCoCo (which has built in support),
--
cgit