blob: 93308faa7869036bfcee527f56ed9bfd4f1377e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import lombok.AllArgsConstructor;
public @AllArgsConstructor(staticName = "of") class StaticConstructor {
String name;
private @java.lang.SuppressWarnings("all") StaticConstructor(final String name) {
super();
this.name = name;
}
public static @org.checkerframework.checker.nullness.qual.NonNull @java.lang.SuppressWarnings("all") StaticConstructor of(final String name) {
return new StaticConstructor(name);
}
}
|