| Annotation Type | Description |
|---|---|
| Accessors |
A container for settings for the generation of getters and setters.
|
| Builder |
The builder annotation creates a so-called 'builder' aspect to the class that is annotated or the class
that contains a member which is annotated with
@Builder. |
| 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.
|
| 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.
|
| Value | Deprecated
Value has been promoted to the main package, so use that one instead. |
| 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.
|
Copyright © 2009-2013 The Project Lombok Authors, licensed under the MIT licence.