Interface TriConsumer<U,​V,​W>

  • Type Parameters:
    U - type of first argument
    V - type of second argument
    W - type of third argument

    public interface TriConsumer<U,​V,​W>
    A consumer that accepts three arguments.
    • Method Detail

      • accept

        void accept​(U arg1,
                    V arg2,
                    W arg3)
        Applies the given arguments to the function.
        Parameters:
        arg1 - first argument
        arg2 - second argument
        arg3 - third argument