Module org.scijava.function
Package org.scijava.function
Interface Consumers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11>
-
- Type Parameters:
I1- the type of argument 1.I2- the type of argument 2.I3- the type of argument 3.I4- the type of argument 4.I5- the type of argument 5.I6- the type of argument 6.I7- the type of argument 7.I8- the type of argument 8.I9- the type of argument 9.I10- the type of argument 10.I11- the type of argument 11.
- All Known Subinterfaces:
Computers.Arity10<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,O>,Computers.Arity10_1<O,I1,I2,I3,I4,I5,I6,I7,I8,I9,I10>,Computers.Arity10_10<I1,I2,I3,I4,I5,I6,I7,I8,I9,O,I10>,Computers.Arity10_2<I1,O,I2,I3,I4,I5,I6,I7,I8,I9,I10>,Computers.Arity10_3<I1,I2,O,I3,I4,I5,I6,I7,I8,I9,I10>,Computers.Arity10_4<I1,I2,I3,O,I4,I5,I6,I7,I8,I9,I10>,Computers.Arity10_5<I1,I2,I3,I4,O,I5,I6,I7,I8,I9,I10>,Computers.Arity10_6<I1,I2,I3,I4,I5,O,I6,I7,I8,I9,I10>,Computers.Arity10_7<I1,I2,I3,I4,I5,I6,O,I7,I8,I9,I10>,Computers.Arity10_8<I1,I2,I3,I4,I5,I6,I7,O,I8,I9,I10>,Computers.Arity10_9<I1,I2,I3,I4,I5,I6,I7,I8,O,I9,I10>,Inplaces.Arity11<IO1,IO2,IO3,IO4,IO5,IO6,IO7,IO8,IO9,IO10,IO11>,Inplaces.Arity11_1<IO,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11>,Inplaces.Arity11_10<I1,I2,I3,I4,I5,I6,I7,I8,I9,IO,I11>,Inplaces.Arity11_11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,IO>,Inplaces.Arity11_2<I1,IO,I3,I4,I5,I6,I7,I8,I9,I10,I11>,Inplaces.Arity11_3<I1,I2,IO,I4,I5,I6,I7,I8,I9,I10,I11>,Inplaces.Arity11_4<I1,I2,I3,IO,I5,I6,I7,I8,I9,I10,I11>,Inplaces.Arity11_5<I1,I2,I3,I4,IO,I6,I7,I8,I9,I10,I11>,Inplaces.Arity11_6<I1,I2,I3,I4,I5,IO,I7,I8,I9,I10,I11>,Inplaces.Arity11_7<I1,I2,I3,I4,I5,I6,IO,I8,I9,I10,I11>,Inplaces.Arity11_8<I1,I2,I3,I4,I5,I6,I7,IO,I9,I10,I11>,Inplaces.Arity11_9<I1,I2,I3,I4,I5,I6,I7,I8,IO,I10,I11>
- Enclosing class:
- Consumers
- 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 Consumers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11>
Represents an operation that accepts 11 input arguments and returns no result. This is the 11-arity specialization ofConsumer. Unlike most other functional interfaces, this interface is expected to operate via side-effects.This is a functional interface whose functional method is
accept(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object).- See Also:
Consumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11)Performs this operation on the given arguments.default Consumers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11>andThen(Consumers.Arity11<? super I1,? super I2,? super I3,? super I4,? super I5,? super I6,? super I7,? super I8,? super I9,? super I10,? super I11> after)Returns a composedConsumer.Arity11that performs, in sequence, this operation followed by theafteroperation.
-
-
-
Method Detail
-
accept
void accept(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11)
Performs this operation on the given arguments.- Parameters:
in1- input argument 1.in2- input argument 2.in3- input argument 3.in4- input argument 4.in5- input argument 5.in6- input argument 6.in7- input argument 7.in8- input argument 8.in9- input argument 9.in10- input argument 10.in11- input argument 11.
-
andThen
default Consumers.Arity11<I1,I2,I3,I4,I5,I6,I7,I8,I9,I10,I11> andThen(Consumers.Arity11<? super I1,? super I2,? super I3,? super I4,? super I5,? super I6,? super I7,? super I8,? super I9,? super I10,? super I11> after)
Returns a composedConsumer.Arity11that performs, in sequence, this operation followed by theafteroperation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, theafteroperation will not be performed.- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Consumer.Arity11that performs in sequence this operation followed by theafteroperation - Throws:
NullPointerException- ifafteris null
-
-