See: Description
| Annotation Type | Description |
|---|---|
| Accessors |
A container for settings for the generation of getters and setters.
|
| Builder | Deprecated
Builder has been promoted to the main package, so use that one instead. |
| Delegate |
Put on any field to make lombok generate delegate methods that forward the call to this field.
|
| ExtensionMethod |
Extension methods enable you to "add" methods to existing types without creating a new derived type, recompiling, or
otherwise modifying the original type.
|
| FieldDefaults |
Adds modifiers to each field in the type with this annotation.
|
| Helper |
Use on a method local class to indicate that all methods inside should be exposed to the rest of
the method as if they were helper methods.
|
| NonFinal |
Used to indicate the explicit intention for the annotated entity to not be
final. |
| PackagePrivate |
Used to indicate the explicit intention for the annotated entity to have the package private access level.
|
| Tolerate |
Put on any method or constructor to make lombok pretend it doesn't exist,
i.e., to generate a method which would otherwise be skipped due to possible conflicts.
|
| UtilityClass |
An annotation to create utility classes.
|
| Value | Deprecated
Value has been promoted to the main package, so use that one instead. |
| var |
like val but not final
|
| Wither |
Put on any field to make lombok build a 'wither' - a withX method which produces a clone of this object (except for 1 field which gets a new value).
|
| Wither.AnyAnnotation | Deprecated
Don't use this annotation, ever - Read the documentation.
|
lombok,
Lombok features (experimental)Copyright © 2009-2015 The Project Lombok Authors, licensed under the MIT licence.