Interface Consumer9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9>

  • Type Parameters:
    T1 - the first value type
    T2 - the second value type
    T3 - the third value type
    T4 - the fourth value type
    T5 - the fifth value type
    T6 - the sixth value type
    T7 - the seventh value type
    T8 - the eighth value type
    T9 - the ninth value type

    public interface Consumer9<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9>
    Functional interface for a callback that consumes multipe values at the same and may throw a checked exception.
    • Method Detail

      • accept

        void accept​(T1 t1,
                    T2 t2,
                    T3 t3,
                    T4 t4,
                    T5 t5,
                    T6 t6,
                    T7 t7,
                    T8 t8,
                    T9 t9)
             throws java.lang.Throwable
        Consum the input parameters.
        Parameters:
        t1 - the first parameter
        t2 - the second parameter
        t3 - the third parameter
        t4 - the fourth parameter
        t5 - the fifth parameter
        t6 - the sixth parameter
        t7 - the seventh parameter
        t8 - the eighth parameter
        t9 - the ninth parameter
        Throws:
        java.lang.Throwable - on error