mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 16:19:38 +00:00
11 lines
434 B
Java
11 lines
434 B
Java
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);
|
|
}
|
|
} |