Interface ThrowingConsumer<T,E extends Exception>

Type Parameters:
T - the type of the first argument to the operation.
E - the type of exception that is thrown when accepted.
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 interface ThrowingConsumer<T,E extends Exception>
Represents an operation that accepts an input, returns no result and throws a specified exception when accept(Object) accepted}.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(T t) throws E
      Performs this operation on the given arguments.
      Parameters:
      t - the first input argument
      Throws:
      E - the specified exception