@FunctionalInterface public interface ThrowingFunction<T,R>
Modifier and Type | Method and Description |
---|---|
default <V> ThrowingFunction<T,V> |
andThen(ThrowingFunction<? super R,? extends V> after) |
R |
apply(T elem) |
default <V> ThrowingFunction<V,R> |
compose(ThrowingFunction<? super V,? extends T> before) |
static <T> ThrowingFunction<T,T> |
identity() |
default <V> ThrowingFunction<V,R> compose(ThrowingFunction<? super V,? extends T> before)
default <V> ThrowingFunction<T,V> andThen(ThrowingFunction<? super R,? extends V> after)
static <T> ThrowingFunction<T,T> identity()
Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.