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:
    JDK8 java.lang.Function
    • Method Detail

      • apply

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