diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2023-02-11 20:33:46 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2023-03-21 17:38:04 +0100 |
commit | e64c6b5879d36d45ec6a768ff907b7857a2ee217 (patch) | |
tree | dbae4d784afe5dd81c622a5928e06cb53cd8e3d2 /website/templates/features | |
parent | 984cd1d5cf0af7263efaf167dc308ab59406cd68 (diff) | |
download | lombok-e64c6b5879d36d45ec6a768ff907b7857a2ee217.tar.gz lombok-e64c6b5879d36d45ec6a768ff907b7857a2ee217.tar.bz2 lombok-e64c6b5879d36d45ec6a768ff907b7857a2ee217.zip |
[fixes #3346] Add jakarta Nonnull/Nullable annotations
Diffstat (limited to 'website/templates/features')
-rw-r--r-- | website/templates/features/configuration.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/features/configuration.html b/website/templates/features/configuration.html index 11aa3455..c3c39835 100644 --- a/website/templates/features/configuration.html +++ b/website/templates/features/configuration.html @@ -87,7 +87,7 @@ <ol class="snippet example oneliner"> <li><code>lombok.addNullAnnotations = <em><flavor></em></code></li> </ol> - Many <em>flavors</em> are available: <code>javax</code> (=JSR305; not recommended), <code>eclipse</code>, <code>jetbrains</code>, <code>netbeans</code>, <code>androidx</code>, <code>android.support</code> (deprecated within android), <code>checkerframework</code> (recommended), <code>findbugs</code>, <code>spring</code>, <code>jml</code>, or define your own via <code>CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation</code>; 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 <code>CUSTOM:TYPE_USE:nonnullanno:nullableanno</code>.<br /> + Many <em>flavors</em> are available: <code>javax</code> (=JSR305; not recommended), <code>jakarta</code>, <code>eclipse</code>, <code>jetbrains</code>, <code>netbeans</code>, <code>androidx</code>, <code>android.support</code> (deprecated within android), <code>checkerframework</code> (recommended), <code>findbugs</code>, <code>spring</code>, <code>jml</code>, or define your own via <code>CUSTOM:fully.qualified.NonNullAnnotation:fully.qualified.NullableAnnotation</code>; 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 <code>CUSTOM:TYPE_USE:nonnullanno:nullableanno</code>.<br /> <em>This feature was added in lombok v1.18.12</em>.<br /> </p><p> Lombok can be configured to add <code>@lombok.Generated</code> annotations to all generated nodes where possible; useful for JaCoCo (which has built in support), |