Lombok: Difference between revisions
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
* [https://objectcomputing.com/resources/publications/sett/january-2010-reducing-boilerplate-code-with-project-lombok Reducing Boilerplate Code with Project Lombok] | * [https://objectcomputing.com/resources/publications/sett/january-2010-reducing-boilerplate-code-with-project-lombok Reducing Boilerplate Code with Project Lombok] | ||
* [https://stackoverflow.com/questions/54220991/ Lombok assign custom logger variable name] | * [https://stackoverflow.com/questions/54220991/ Lombok assign custom logger variable name] | ||
* [https:// | * [https://projectlombok.org/features/GetterLazy Lombok features <code>@Getter(lazy=true)</code>] | ||
* [https://projectlombok.org/features/experimental/all Lombok experimental features] | * [https://projectlombok.org/features/experimental/all Lombok experimental features] | ||
* [https://projectlombok.org/features/Builder Lombok features <code>@Builder</code>] | * [https://projectlombok.org/features/Builder Lombok features <code>@Builder</code>] | ||
Line 29: | Line 29: | ||
| valign="top" | | | valign="top" | | ||
* [https://www.baeldung.com/lombok-custom-annotation Implementing a Custom Lombok Annotation] | |||
* [https://stackoverflow.com/questions/53866929/ Unable to use Lombok with '''Java 11'''] | * [https://stackoverflow.com/questions/53866929/ Unable to use Lombok with '''Java 11'''] | ||
* [https://www.baeldung.com/lombok-builder-inheritance Lombok @Builder with Inheritance] | * [https://www.baeldung.com/lombok-builder-inheritance Lombok @Builder with Inheritance] |
Revision as of 09:30, 8 August 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}