Interface BuildPipelineView.Function<F,T>

Type Parameters:
F - type of the function
T - type returned by apply
Enclosing class:
BuildPipelineView

public static interface BuildPipelineView.Function<F,T>
A function which accepts an argument and returns a result. Necessary to parameterize behavior, because we do not require JDK8 yet.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(F input)
    Applies this function to the argument
  • Method Details

    • apply

      T apply(F input)
      Applies this function to the argument
      Parameters:
      input - an input
      Returns:
      a result