mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 14:22:19 +00:00
8 lines
133 B
Java
8 lines
133 B
Java
class GetterLazy {
|
|
static class ValueType {
|
|
}
|
|
|
|
@lombok.Getter(lazy=true)
|
|
private final ValueType fieldName = new ValueType();
|
|
}
|