T
- the type of the first argument to the functionU
- the type of the second argument to the functionV
- the type of the third argument to the functionW
- the type of the fourth argument to the functionR
- the type of the result of the function@FunctionalInterface
public interface IOQuadFunction<T,U,V,W,R>
IOFunction
.
This is a functional interface whose functional method is
apply(Object, Object, Object, Object)
.
Function
Modifier and Type | Method and Description |
---|---|
default <X> IOQuadFunction<T,U,V,W,X> |
andThen(IOFunction<? super R,? extends X> after)
Creates a composed function that first applies this function to its input, and then applies the
after
function to the result. |
R |
apply(T t,
U u,
V v,
W w)
Applies this function to the given arguments.
|
default <X> IOQuadFunction<T,U,V,W,X> andThen(IOFunction<? super R,? extends X> after)
after
function to the result. If evaluation of either function throws an exception, it is relayed to the caller of the
composed function.X
- the type of output of the after
function, and of the composed functionafter
- the function to apply after this function is appliedafter
functionjava.lang.NullPointerException
- if after is nullR apply(T t, U u, V v, W w) throws java.io.IOException
t
- the first function argumentu
- the second function argumentv
- the third function argumentw
- the fourth function argumentjava.io.IOException
- if an I/O error occurs.Copyright © 2010 - 2023 Adobe. All Rights Reserved