Hello everyone,
It's my first conversation here, so I hope I'm doing everything correctly. I was wondering if it's possible to change the name of the method that a getter generates? For example, if I have:
@Getter
private static final CustomDataStorage INSTANCE = new CustomDataStorage();
The getter generates getINSTANCE(), instead of getInstance(). I know the obvious solution would be lower casing it, but I don't really want to do that, as I want my code to be consistent and readable. My current solution is to just generate the getter manually, but I was just wondering if it's possible to change how it's generated, to prevent me from having to manually generate the getter method?
Thanks,
Kind regards,
Archie