Interface ApiFunction<F,T>

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 ApiFunction<F,T>
Legacy version of Function.

It is similar to Guava's Function, redeclared so that Guava can be shaded.

  • Method Summary

    Modifier and Type
    Method
    Description
    apply(F input)
     
  • Method Details

    • apply

      T apply(F input)