mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
8 lines
188 B
Java
8 lines
188 B
Java
//version 8:
|
|
//CONF: lombok.addNullAnnotations = checkerframework
|
|
import lombok.AllArgsConstructor;
|
|
@AllArgsConstructor(staticName = "of")
|
|
public class StaticConstructor {
|
|
String name;
|
|
}
|