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://stackoverflow.com/questions/53866929/ Unable to use Lombok with Java 11] | * [https://stackoverflow.com/questions/53866929/ Unable to use Lombok with '''Java 11'''] | ||
* [https://projectlombok.org/api/index-all.html Lombok API Documentation] | * [https://projectlombok.org/api/index-all.html Lombok API Documentation] | ||
* [https://projectlombok.org/features/With Lombok features <code>@With</code>] | * [https://projectlombok.org/features/With Lombok features <code>@With</code>] |
Revision as of 00:07, 7 August 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}