@FunctionalInterface public interface Function4<T1,T2,T3,T4,R>
| 限定符和类型 | 方法和说明 |
|---|---|
default Function3<T2,T3,T4,R> |
acceptPartially(T1 t1) |
default Function2<T3,T4,R> |
acceptPartially(T1 t1,
T2 t2) |
default Function1<T4,R> |
acceptPartially(T1 t1,
T2 t2,
T3 t3) |
default Function0<R> |
acceptPartially(T1 t1,
T2 t2,
T3 t3,
T4 t4) |
R |
apply(T1 t1,
T2 t2,
T3 t3,
T4 t4) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3,
T4 t4) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3,
T4 t4,
Consumer<Throwable> handler) |
default R |
applyUnchecked(T1 t1,
T2 t2,
T3 t3,
T4 t4,
Function<Throwable,R> handler) |
Copyright © 2024. All rights reserved.