T - the type of the first argument to the functionU - the type of the second argument to the functionS - the type of the third argument to the functionV - the type of the fourth argument to the function@FunctionalInterface
public interface QuadConsumer<T,U,S,V>
Consumer.
This is a functional interface whose functional method is
accept(Object, Object, Object, Object).
Consumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T firstParam,
U secondParam,
S thirdParam,
V fourthParam)
Performs operation on the given arguments.
|
void accept(@Nullable
T firstParam,
@Nullable
U secondParam,
@Nullable
S thirdParam,
@Nullable
V fourthParam)
firstParam - the first argument.secondParam - the second argument.thirdParam - the third argument.fourthParam - the fourth argument.