Lombok: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
| valign="top" | | | valign="top" | | ||
* [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] | ||
|} | |} |
Revision as of 09:15, 8 August 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}