Lombok: Difference between revisions
Jump to navigation
Jump to search
Line 36: | Line 36: | ||
* [https://projectlombok.org/api/index-all.html Lombok API Documentation] | * [https://projectlombok.org/api/index-all.html Lombok API Documentation] | ||
* [https://projectlombok.org/ Project Lombok] | * [https://projectlombok.org/ Project Lombok] | ||
* [[MapStruct]] | |||
|} | |} |
Revision as of 09:16, 21 September 2021
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {
@Getter(AccessLevel.NONE)
private Boolean xxx;
public Boolean isXxx() {
return xxx;
}
}