Interface FiveParameterVoidFunction<T,U,V,W,X>

Type Parameters:
T - The first parameter of the function.
U - The second parameter of the function.
V - The third parameter of the function.
W - The fourth parameter of the function.
X - The fifth parameter of the function.
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 FiveParameterVoidFunction<T,U,V,W,X>
The ThreeParameterVoidFunction class defines a lambda expression function that takes three parameters with no return value.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(T one, U two, V three, W four, X five)
    Apply invokes the function this lambda function represents.
  • Method Details

    • apply

      void apply(T one, U two, V three, W four, X five)
      Apply invokes the function this lambda function represents.
      Parameters:
      one - The first parameter of the function.
      two - The second parameter of the function.
      three - The third parameter of the function.
      four - The fourth parameter of the function.
      five - The fifth parameter of the function.