-
- Type Parameters:
A
- first argument typeB
- second argument typeC
- third argument typeD
- fourth argument type
- All Superinterfaces:
Functions.BiConsumer<A,B>
,Functions.Consumer<A>
,Functions.TriConsumer<A,B,C>
- Enclosing class:
- Functions
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface Functions.QuadriConsumer<A,B,C,D> extends Functions.TriConsumer<A,B,C>
Represents an operation that accepts four input arguments and returns no result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
accept(A a, B b, C c)
Performs this operation on the given arguments.void
accept(A a, B b, C c, D d)
Performs this operation on the given arguments.-
Methods inherited from interface aeonics.util.Functions.BiConsumer
accept
-
Methods inherited from interface aeonics.util.Functions.TriConsumer
accept
-
-
-
-
Method Detail
-
accept
default void accept(A a, B b, C c) throws java.lang.Exception
Description copied from interface:Functions.TriConsumer
Performs this operation on the given arguments.- Specified by:
accept
in interfaceFunctions.TriConsumer<A,B,C>
- Parameters:
a
- the input argumentb
- the input argumentc
- the input argument- Throws:
java.lang.Exception
- if an error happens
-
-