Class Functions

java.lang.Object
org.apache.commons.lang3.function.Functions

public final class Functions extends Object
Factory for Function.
Since:
3.14.0
  • Constructor Details

    • Functions

      private Functions()
  • Method Details

    • function

      public static <T, R> Function<T,R> function(Function<T,R> function)
      Starts a fluent chain like function(foo::bar).andThen(...).andThen(...).apply(...);
      Type Parameters:
      T - Input type.
      R - Return type.
      Parameters:
      function - the argument to return.
      Returns:
      the argument