Interface ThrowingFunction1<T0,R>

Type Parameters:
T0 - the type of the #0 argument.
R - the type of the result.
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 ThrowingFunction1<T0,R>
An unary function which may throw a throwable.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T0 a0)
    Applies the function to the given argument.
  • Method Details

    • apply

      R apply(T0 a0) throws Throwable
      Applies the function to the given argument.
      Parameters:
      a0 - the #0 argument.
      Returns:
      the result of the function.
      Throws:
      Throwable - if anything is thrown.