blob: 77830587b9772e373d23b624da2143a33757b76c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import java.util.List;
public class SuperBuilderCustomized {
@lombok.experimental.SuperBuilder
public static class Parent {
public static abstract class ParentBuilder<C extends Parent, B extends ParentBuilder<C, B>> {
public B resetToDefault() {
field1 = 0;
return self();
}
public B field1(int field1) {
this.field1 = field1 + 1;
return self();
}
}
int field1;
}
@lombok.experimental.SuperBuilder
public static class Child extends Parent {
private static final class ChildBuilderImpl extends ChildBuilder<Child, ChildBuilderImpl> {
@Override
public Child build() {
this.resetToDefault();
return new Child(this);
}
}
double field2;
public static ChildBuilder<?, ?> builder() {
return new ChildBuilderImpl().field2(10.0);
}
}
public static void test() {
Child x = Child.builder().field2(1.0).field1(5).resetToDefault().build();
}
}
|