I am using Java lombok annotation @Getter
to generate getters for my POJO. I have a boolean
field by the name isAbc
.
The @Getter
annotation in this case generates a method by the name isAbc()
. Shouldn't it generate a method by the name isIsAbc()
?