Interface Consumers.Arity17<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16,​I17>

  • 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.
    I12 - the type of argument 12.
    I13 - the type of argument 13.
    I14 - the type of argument 14.
    I15 - the type of argument 15.
    I16 - the type of argument 16.
    I17 - the type of argument 17.
    All Known Subinterfaces:
    Computers.Arity16<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16,​O>, Computers.Arity16_1<O,​I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_10<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​O,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_11<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​O,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_12<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​O,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_13<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​O,​I13,​I14,​I15,​I16>, Computers.Arity16_14<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​O,​I14,​I15,​I16>, Computers.Arity16_15<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​O,​I15,​I16>, Computers.Arity16_16<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​O,​I16>, Computers.Arity16_2<I1,​O,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_3<I1,​I2,​O,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_4<I1,​I2,​I3,​O,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_5<I1,​I2,​I3,​I4,​O,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_6<I1,​I2,​I3,​I4,​I5,​O,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_7<I1,​I2,​I3,​I4,​I5,​I6,​O,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_8<I1,​I2,​I3,​I4,​I5,​I6,​I7,​O,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>, Computers.Arity16_9<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​O,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16>
    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.Arity17<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16,​I17>
    Represents an operation that accepts 17 input arguments and returns no result. This is the 17-arity specialization of Consumer. 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, Object, Object, Object, Object, Object, Object).

    See Also:
    Consumer
    • 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,
                    I12 in12,
                    I13 in13,
                    I14 in14,
                    I15 in15,
                    I16 in16,
                    I17 in17)
        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.
        in12 - input argument 12.
        in13 - input argument 13.
        in14 - input argument 14.
        in15 - input argument 15.
        in16 - input argument 16.
        in17 - input argument 17.
      • andThen

        default Consumers.Arity17<I1,​I2,​I3,​I4,​I5,​I6,​I7,​I8,​I9,​I10,​I11,​I12,​I13,​I14,​I15,​I16,​I17> andThen​(Consumers.Arity17<? super I1,​? super I2,​? super I3,​? super I4,​? super I5,​? super I6,​? super I7,​? super I8,​? super I9,​? super I10,​? super I11,​? super I12,​? super I13,​? super I14,​? super I15,​? super I16,​? super I17> after)
        Returns a composed Consumer.Arity17 that performs, in sequence, this operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after operation will not be performed.
        Parameters:
        after - the operation to perform after this operation
        Returns:
        a composed Consumer.Arity17 that performs in sequence this operation followed by the after operation
        Throws:
        NullPointerException - if after is null