Allow default values (other than null / 0 / false) for builder. That is, if some .fieldName(value) method is never called on the builder, use the provided default instead of null etc.
@Value @Builder public class Test {
long created = System.currentTimeMillis();