Skip to content
Advertisement

Change SuperBuilder method with Lombok

I have a class as follows:

JavaScript

This generates a builder with a default() method that is not usable due to it being a reserved word. Is there a way to change this behavior so the builder works?

Advertisement

Answer

Unfortunately, there is no nice way in this case. @Accessors affects getters, setters and builders, because this is what you need in the vast majority of the cases. You cannot switch it off only for builders.

This means the only way out here (apart from renaming the _default field) is to remove @Accessors and implement getters and setters manually:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement