Schnittstelle IThrowingFunction<V,R,T extends Throwable>

Typparameter:
V - type of value
R - type of result
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 IThrowingFunction<V,R,T extends Throwable>
Function which allows throwing any exception.
Seit:
v5.1.0 - 2024-07-12
Autor:
hypfvieh
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    apply(V _val)
    Returns the result of the function or throws an exception.
  • Methodendetails

    • apply

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