@Jacksonized: modify builders that they can be used by Jackson

This commit is contained in:
Jan Rieke
2020-02-16 15:17:20 +01:00
parent 59aa676111
commit 8be4b0ffe6
30 changed files with 1099 additions and 70 deletions
@@ -0,0 +1,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) {}
}