Lombok: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
| valign="top" | | | valign="top" | | ||
* [https://stackoverflow.com/questions/44948858/ Lombok <code>@builder</code> on a class that extends another class] | |||
* [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'''] |
Revision as of 01:40, 9 August 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}