Interface IFormValuePostProcessor
-
public interface IFormValuePostProcessorA post processor for form values that is executed after the value was resolved, seeIFormReplacerParams.getFormValuePostProcessors(). Could be used, for example, to parse strings as numbers and convert them to the default number format.- Since:
- 8.4.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFormValuePostProcessorRetValpostProcess(IFormValuePostProcessorParams params)Performs the post-processing on the form values.
-
-
-
Method Detail
-
postProcess
IFormValuePostProcessorRetVal postProcess(IFormValuePostProcessorParams params)
Performs the post-processing on the form values. The implementation may either modify theform valuesin-place, or return a new list of values.- Parameters:
params- The parameters for the post processor.- Returns:
- The result of the post-processing, or
nullto use the original list of values.
-
-