Lombok: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 17: Line 17:
* [https://stackoverflow.com/questions/18139678/ Lombok customise getter for Boolean object field]
* [https://stackoverflow.com/questions/18139678/ Lombok customise getter for Boolean object field]
* [https://objectcomputing.com/resources/publications/sett/january-2010-reducing-boilerplate-code-with-project-lombok Reducing Boilerplate Code with Project Lombok]
* [https://objectcomputing.com/resources/publications/sett/january-2010-reducing-boilerplate-code-with-project-lombok Reducing Boilerplate Code with Project Lombok]
* [https://www.baeldung.com/lombok-custom-annotation Implementing a Custom Lombok Annotation]
* [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]

Revision as of 17:46, 5 August 2021

@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyPojo {

    @Getter(AccessLevel.NONE)
    private Boolean xxx;

    public Boolean isXxx() {
        return xxx;
    }
}

References