mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 10:23:55 +00:00
12 lines
271 B
Java
12 lines
271 B
Java
import java.util.List;
|
|
|
|
@lombok.Builder(setterPrefix = "with") @lombok.Value
|
|
class BuilderAndValueWithSetterPrefix {
|
|
private final int zero = 0;
|
|
}
|
|
|
|
@lombok.Builder(setterPrefix = "with") @lombok.Data
|
|
class BuilderAndDataWithSetterPrefix {
|
|
private final int zero = 0;
|
|
}
|