Interface IntIntTConsumer<T>

    • Method Summary

       
      @FunctionalInterface: (Lambda) Method
      Modifier and Type Method
      void accept​(int i, int j, T t)
       
      Default Composition & Builder Method(s)
      Modifier and Type Method
      default IntIntTConsumer<T> andThen​(IntIntTConsumer<? super T> after)
    • Method Detail

      • accept

        🡇     🗕  🗗  🗖
        void accept​(int i,
                    int j,
                    T t)
        Performs 'this' operation on the given arguments.

        FunctionalInterface Target-Method:
        This method corresponds to the @FunctionalInterface Annotation's method requirement. It is the only non-default, non-static method in this interface, and may be the target of a Lambda-Expression or '::' (double-colon) Function-Pointer.
        Parameters:
        i - First integer argument.
        j - Second integer argument.
        t - Typed object parameter.
      • andThen

        🡅     🗕  🗗  🗖
        default IntIntTConsumer<TandThen​(IntIntTConsumer<? super T> after)
        Returns a composed consumer 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 that performs in sequence 'this' operation followed by the 'after' operation.
        Throws:
        java.lang.NullPointerException - if parameter 'other' is null.
        Code:
        Exact Method Body:
         if (after == null)
             throw new NullPointerException("null has been passed to parameter 'after'");
        
         return (int i, int j, T t) ->
         {
             this.accept(i, j, t); 
             after.accept(i, j, t);
         };