Uses of Interface
org.junit.platform.commons.function.Try.Transformer
Package
Description
Maintained functional interfaces and support classes.
-
Uses of Try.Transformer in org.junit.platform.commons.function
Modifier and TypeMethodDescriptionabstract <U> Try<U>
Try.andThenTry
(Try.Transformer<V, U> transformer) If thisTry
is a success, apply the supplied transformer to its value and return a new successful or failedTry
depending on the transformer's outcome; if thisTry
is a failure, do nothing.