Interface UEmptyFunErrSafe.UEmptyFunErrSafe3<T1,T2,T3,E extends Throwable>

Type Parameters:
T1 - first function argument
T2 - second function argument
T3 - third function argument
E - execution error
All Superinterfaces:
UEmptyFunErr.UEmptyFunErr3<T1,T2,T3,E>
Enclosing interface:
UEmptyFunErrSafe<E extends Throwable>
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 static interface UEmptyFunErrSafe.UEmptyFunErrSafe3<T1,T2,T3,E extends Throwable> extends UEmptyFunErr.UEmptyFunErr3<T1,T2,T3,E>
Representation of a method in Java. Although called a function, it works very similar to a method, and it is possible to reference one via referencing or lambda expressions.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    invokeSafe(T1 a1, T2 a2, T3 a3)
    Method that invokes the behavior of the function.

    Methods inherited from interface ushiosan.jvm.function.UEmptyFunErr.UEmptyFunErr3

    invoke
  • Method Details

    • invokeSafe

      default void invokeSafe(T1 a1, T2 a2, T3 a3)
      Method that invokes the behavior of the function. This method takes the necessary parameters.
      Parameters:
      a1 - first function argument
      a2 - second function argument
      a3 - third function argument