blob: dec1cd3bb1a9800ebe244f2d0e8b2278a15f5e42 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//CONF: lombok.builder.className = Test*Name
import java.util.List;
import lombok.Builder;
import lombok.extern.jackson.Jacksonized;
class JacksonizedBuilderComplex {
@Jacksonized
@Builder(buildMethodName = "execute", setterPrefix = "with")
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, JacksonizedBuilderComplex selfRef) {}
}
|