I have two classes Child
extends Parent
. I need to put @Builder annotation on the classes such that I do not need to create the builder my self.
package jerry;// Internal compiler error: java.lang.NullPointerException
import lombok.AllArgsConstructor;
import lombok.Builder;
@AllArgsConstructor(onConstructor=@__(@Builder))
public class Child extends Parent {
//Multiple markers at this line
// - Implicit super constructor Parent() is undefined. Must explicitly invoke another constructor
// - overrides java.lang.Object.toString
private String a;
private int b;
private boolean c;
}
@Builder
public class Parent {
private double d;
private float e;
}
I need to be able to build child instance such that
Child child = Child.builder().a("aVal").b(1000).c(true).d(10.1).e(20.0F).build();
But so far I am getting the errors mentioned in side that code comments. Can any one point me to the right direction how to achieve it with lombok or any other similar library ?
Sub-question
Why does @AllArgsConstructor(onConstructor=@__(@Autowired))
compile but @AllArgsConstructor(onConstructor=@__(@Builder))
does not?