Interface QuadConsumer<S,​T,​U,​V>

  • Type Parameters:
    S - type of the first argument
    T - type of the second argument
    U - type of the third argument
    V - type of the fourth 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 QuadConsumer<S,​T,​U,​V>
    Operation which is performed on four given arguments.
    • Method Detail

      • accept

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