lombok boolean is prefix

Solutions on MaxInterview for lombok boolean is prefix by the best coders in the world

showing results for - "lombok boolean is prefix"
Aline
16 Oct 2016
1@Getter
2private boolean isGood; // => isGood()
3
4@Getter
5private boolean good; // => isGood()
6
7@Getter
8private Boolean isGood; // => getIsGood()
9