I have a project(ID3 tagging) that contains dozens of setters and getters. I'm investigating Project Lombok to see how it can help me.
Some of the fields that can be set have very strict requirements that could include character encoding, bit-setting, length checks, character ranges and, so on. I could use a builder patter but, there may be cases where the pattern isn't necessary. What if I want to use validation methods and/or classes rather than annotation? How can I access Lombok's setters in my Netbeans project to add these validations?