static final Complex CONSTANT = new Complex(1, 2);
static final StableValue<Complex> STABLE_VALUE = StableValue.of(); Complex getLazyConstant() { return STABLE_VALUE.orElseGet(() -> new Complex(1, 2)) }