1 2 3 4 5 6 7 8 9 10 11 12
//CONF: lombok.noArgsConstructor.extraPrivate = false public class NoPrivateNoArgsConstructor { @lombok.Data public static class NoPrivateNoArgsConstructorData { private final int i; } @lombok.Value public static class NoPrivateNoArgsConstructorValue { int i; } }