Interface StepRenderer<T>

  • All Known Implementing Classes:
    BindStepRenderer

    public interface StepRenderer<T>
    To handle the resolver a template of a step renderer.
    Since:
    9.0.0
    Author:
    jameschu
    • Method Detail

      • render

        void render​(Step step,
                    T data,
                    int index)
             throws java.lang.Exception
        Renders the data to the specified Step.
        Parameters:
        step - the Step to render the result.
        data - that is used to render the Step
        index - the index of the data that is currently being rendered. Notice the index is the order of the siblings (i.e., data that belongs to the same parent).
        Throws:
        java.lang.Exception