@Value
@Builder
public class XXX {
String field1;
String field2;
String field3;
}
I have a class using lombok @Value as above, where each field will be made private and final. Now, I'd like to have a setter for field3, which does not work because field3 is final. What should I do here?