class GetterLazyGenerics { @lombok.Getter(lazy=true) private final E field = getAny(); @lombok.Getter(lazy=true) private final long field2 = System.currentTimeMillis(); public static E getAny() { return null; } }