- accept(T) - Method in interface io.buybrain.util.function.ThrowingConsumer
-
- andThen(ThrowingSupplier<Result<R, ?>>) - Method in class io.buybrain.util.Result
-
If the current value is OK, yield a new Result by calling a supplier.
- andThen(ThrowingConsumer<T>) - Method in class io.buybrain.util.Result
-
If the current value is OK, pass it to a consumer and return an empty OK result.
- andThen(ThrowingRunnable) - Method in class io.buybrain.util.Result
-
If the current value is OK, call a runnable and return an empty OK result.
- andThenTry(ThrowingSupplier<R>) - Method in class io.buybrain.util.Result
-
If the current value is OK, yield a new Result by calling a supplier.
- andThenTry(ThrowingConsumer<T>) - Method in class io.buybrain.util.Result
-
If the current value is OK, pass it to a consumer and return an empty OK result.
- andThenTry(ThrowingRunnable) - Method in class io.buybrain.util.Result
-
If the current value is OK, call a runnable and return an empty OK result.
- apply(T) - Method in interface io.buybrain.util.function.ThrowingFunction
-