Uses of Interface
org.junit.platform.commons.function.Try.Transformer
| Package | Description |
|---|---|
| org.junit.platform.commons.function |
Maintained functional interfaces and support classes.
|
-
Uses of Try.Transformer in org.junit.platform.commons.function
Methods in org.junit.platform.commons.function with parameters of type Try.Transformer Modifier and Type Method Description abstract <U> Try<U>Try. andThenTry(Try.Transformer<V,U> transformer)If thisTryis a success, apply the supplied transformer to its value and return a new successful or failedTrydepending on the transformer's outcome; if thisTryis a failure, do nothing.