- 
- Type Parameters:
- A- first argument type
- B- second argument type
- C- third argument type
- D- 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 SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidaccept(A a, B b, C c)Performs this operation on the given arguments.voidaccept(A a, B b, C c, D d)Performs this operation on the given arguments.- 
Methods inherited from interface aeonics.util.Functions.BiConsumeraccept
 - 
Methods inherited from interface aeonics.util.Functions.TriConsumeraccept
 
- 
 
- 
- 
- 
Method Detail- 
acceptdefault void accept(A a, B b, C c) throws java.lang.Exception Description copied from interface:Functions.TriConsumerPerforms this operation on the given arguments.- Specified by:
- acceptin interface- Functions.TriConsumer<A,B,C>
- Parameters:
- a- the input argument
- b- the input argument
- c- the input argument
- Throws:
- java.lang.Exception- if an error happens
 
 
- 
 
-