Lombok: Difference between revisions
Jump to navigation
Jump to search
Line 21: | Line 21: | ||
* [https://stackoverflow.com/questions/54220991/ Lombok assign custom logger variable name] | * [https://stackoverflow.com/questions/54220991/ Lombok assign custom logger variable name] | ||
* [https://www.baeldung.com/lombok-custom-annotation Implementing a Custom Lombok Annotation] | * [https://www.baeldung.com/lombok-custom-annotation Implementing a Custom Lombok Annotation] | ||
* [https:// | * [https://projectlombok.org/features/experimental/all Lombok experimental features] | ||
* [https://projectlombok.org/ | * [https://projectlombok.org/features/Builder Lombok features <code>@Builder</code>] | ||
* [https://projectlombok.org/features/With Lombok features <code>@With</code>] | * [https://projectlombok.org/features/With Lombok features <code>@With</code>] | ||
* [https://projectlombok.org/features/log Lombok features <code>@Log</code>] | * [https://projectlombok.org/features/log Lombok features <code>@Log</code>] | ||
* [https://projectlombok.org/features/all Lombok stable features] | |||
* [https://projectlombok.org/api/lombok/extern/slf4j/Slf4j.html <code>@Slf4j</code> Examples] | * [https://projectlombok.org/api/lombok/extern/slf4j/Slf4j.html <code>@Slf4j</code> Examples] | ||
| valign="top" | | | valign="top" | | ||
* [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] | ||
* [https://blog.ippon.tech/comparing-java-lts-releases/ Comparing Java LTS Releases] | * [https://blog.ippon.tech/comparing-java-lts-releases/ Comparing Java LTS Releases] | ||
* [https://projectlombok.org/api/index-all.html Lombok API Documentation] | |||
* [https://projectlombok.org/ Project Lombok] | |||
|} | |} |
Revision as of 09:24, 8 August 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}