Interface ThrowingSupplier<T>

Type Parameters:
T - result 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>
Like Supplier<T> but allows checked exceptions.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Supplies a value.
  • Method Details

    • get

      T get() throws Exception
      Supplies a value.
      Returns:
      result
      Throws:
      Exception - if any error occurs