mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 20:21:01 +00:00
16 lines
461 B
Java
16 lines
461 B
Java
import lombok.Builder;
|
|
|
|
class BuilderWithExistingBuilderClassWithSetterPrefix<T, K extends Number> {
|
|
@Builder(setterPrefix = "with")
|
|
public static <Z extends Number> BuilderWithExistingBuilderClassWithSetterPrefix<String, Z> staticMethod(Z arg1, boolean arg2, String arg3) {
|
|
return null;
|
|
}
|
|
|
|
public static class BuilderWithExistingBuilderClassBuilderWithSetterPrefix<Z extends Number> {
|
|
private Z arg1;
|
|
|
|
public void withArg2(boolean arg) {
|
|
}
|
|
}
|
|
}
|