Interface Functions.TriConsumer<A,​B,​C>

  • Type Parameters:
    A - the type of the first parameter
    B - the type of the second parameter
    C - the type of the third parameter
    Enclosing class:
    Functions
    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 Functions.TriConsumer<A,​B,​C>
    A consumer taking 3 parameters.
    • Method Detail

      • accept

        void accept​(A a,
                    B b,
                    C c)