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 Summary
Modifier and TypeMethodDescriptionPerforms the post-processing on the form values.
-
Method Details
-
postProcess
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.
-