mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-25 20:01:38 +00:00
29 lines
737 B
Plaintext
29 lines
737 B
Plaintext
public class ConstructorExample<T> {
|
|
private int x, y;
|
|
@NonNull private T description;
|
|
|
|
private ConstructorExample(T description) {
|
|
if (description == null) throw new NullPointerException("description");
|
|
this.description = description;
|
|
}
|
|
|
|
public static <T> ConstructorExample<T> of(T description) {
|
|
return new ConstructorExample<T>(description);
|
|
}
|
|
|
|
@java.beans.ConstructorProperties({"x", "y", "description"})
|
|
protected ConstructorExample(int x, int y, T description) {
|
|
if (description == null) throw new NullPointerException("description");
|
|
this.x = x;
|
|
this.y = y;
|
|
this.description = description;
|
|
}
|
|
|
|
public static class NoArgsExample {
|
|
@NonNull private String field;
|
|
|
|
public NoArgsExample() {
|
|
}
|
|
}
|
|
}
|