mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 10:19:12 +00:00
6 lines
421 B
Plaintext
6 lines
421 B
Plaintext
6 @Builder will ignore the initializing expression entirely. If you want the initializing expression to serve as default, add @Builder.Default. If it is not supposed to be settable during building, make the field final.
|
|
8 @Builder.Default requires an initializing expression (' = something;').
|
|
9 @Builder.Default and @Singular cannot be mixed.
|
|
13 @Builder.Default requires @Builder on the class for it to mean anything.
|
|
|