I want to use a data class in Lombok. Since it has about a dozen fields, I annotated it with @Data
in order to generate all the setters and getter. However there is one special field for which I don’t want to the accessors to be implemented.
How does Lombok omit this field?