Schnittstelle IThrowingSupplier<V,T extends Throwable>

Typparameter:
V - type which is supplied
T - type of exception which gets thrown
Funktionsschnittstelle:
Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.

@FunctionalInterface public interface IThrowingSupplier<V,T extends Throwable>
Supplier which allows throwing any exception.
Seit:
v1.3.0 - 2023-01-12
Autor:
hypfvieh
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    get()
    Returns the result of the supplier or throws an exception.
  • Methodendetails

    • get

      V get() throws T
      Returns the result of the supplier or throws an exception.
      Gibt zurück:
      result of supplied function
      Löst aus:
      T - exception