Interface IFormValuePostProcessor


  • public interface IFormValuePostProcessor
    A post processor for form values that is executed after the value was resolved, see IFormReplacerParams.getFormValuePostProcessors(). Could be used, for example, to parse strings as numbers and convert them to the default number format.
    Since:
    8.4.1
    • Method Detail

      • postProcess

        IFormValuePostProcessorRetVal postProcess​(IFormValuePostProcessorParams params)
        Performs the post-processing on the form values. The implementation may either modify the form values in-place, or return a new list of values.
        Parameters:
        params - The parameters for the post processor.
        Returns:
        The result of the post-processing, or null to use the original list of values.