1 2 3 4 5 6 7
class GetterLazy { static class ValueType { } @lombok.Getter(lazy=true) private final ValueType fieldName = new ValueType(); }