mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
3f0fec1872
(chainable setters, static constructors, builder stuff)
7 lines
175 B
Java
7 lines
175 B
Java
//CONF: lombok.addNullAnnotations = checkerframework
|
|
import lombok.AllArgsConstructor;
|
|
@AllArgsConstructor(staticName = "of")
|
|
public class StaticConstructor {
|
|
String name;
|
|
}
|