Uses of Interface
io.vavr.CheckedConsumer
-
Packages that use CheckedConsumer Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.control -
-
Uses of CheckedConsumer in io.vavr
Methods in io.vavr that return CheckedConsumer Modifier and Type Method Description default CheckedConsumer<T>
CheckedConsumer. andThen(CheckedConsumer<? super T> after)
Returns a chainedCheckedConsumer
that first executesthis.accept(t)
and thenafter.accept(t)
, for a givent
of typeT
.static <T> CheckedConsumer<T>
CheckedConsumer. of(CheckedConsumer<T> methodReference)
Creates aCheckedConsumer
.Methods in io.vavr with parameters of type CheckedConsumer Modifier and Type Method Description default CheckedConsumer<T>
CheckedConsumer. andThen(CheckedConsumer<? super T> after)
Returns a chainedCheckedConsumer
that first executesthis.accept(t)
and thenafter.accept(t)
, for a givent
of typeT
.static <T> CheckedConsumer<T>
CheckedConsumer. of(CheckedConsumer<T> methodReference)
Creates aCheckedConsumer
. -
Uses of CheckedConsumer in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedConsumer Modifier and Type Method Description default Try<T>
Try. andThenTry(CheckedConsumer<? super T> consumer)
Passes the result to the givenconsumer
if this is aSuccess
.
-