Interface TriConsumer<S,​T,​U>

  • Type Parameters:
    S - type of the first argument
    T - type of the second argument
    U - type of the third argument
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @PublicEvolving
    @FunctionalInterface
    public interface TriConsumer<S,​T,​U>
    Operation which is performed on three given arguments.
    • Method Detail

      • accept

        void accept​(S s,
                    T t,
                    U u)
        Performs this operation on the given arguments.
        Parameters:
        s - first argument
        t - second argument
        u - third argument