Interface ThrowingSupplier<T,E extends Throwable>

Type Parameters:
T - the type of results supplied by this supplier
E - the type of Throwable that may be thrown by this supplier
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 Throwable>
Represents a supplier of results that may throw.

Like Supplier but able to throw an exception

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Returns a result.
  • Method Details

    • get

      T get() throws E
      Returns a result.
      Returns:
      a result
      Throws:
      E - Throwable that may be thrown
      See Also: