Interface ThrowingSupplier<T,E extends Exception>

Type Parameters:
T - The type of the output of the supplier
E - The type of the exception that may be thrown
All Known Subinterfaces:
SerializationUtils.Reader<ITEM_TYPE>
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 ThrowingSupplier<T,E extends Exception>
Represents an operation that accepts no input and returns a result, declaring a possibly-thrown exception.
  • Method Details