Interface GeneratorUtils.ThrowingConsumer<T,​E extends java.lang.Exception>

  • Type Parameters:
    T - Input type.
    E - Exception that is thrown.
    Enclosing class:
    GeneratorUtils

    public static interface GeneratorUtils.ThrowingConsumer<T,​E extends java.lang.Exception>
    Throwing consumer interface.
    • Method Detail

      • accept

        void accept​(T t)
             throws E extends java.lang.Exception
        Performs operation on the given argument.
        Parameters:
        t - Input argument.
        Throws:
        E - Exception that is thrown.
        E extends java.lang.Exception