mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 20:01:38 +00:00
12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
import lombok.Builder;
|
|
import lombok.Singular;
|
|
import java.util.Set;
|
|
|
|
@Builder
|
|
public class BuilderExample {
|
|
@Builder.Default private long created = System.currentTimeMillis();
|
|
private String name;
|
|
private int age;
|
|
@Singular private Set<String> occupations;
|
|
}
|