static <A> WithPollValue<A> withPollValue(O pollValue default value, A value) { ret new WithPollValue<A>(pollValue, value); } static <A> WithPollValue<A> withPollValue(O pollValue, IF0<A> makeValue) { ret new WithPollValue<A>(pollValue, makeValue); }