Package de.xima.fc.mdl.placeholder
Class DefaultFormValuePostProcessorRetVal
- java.lang.Object
-
- de.xima.fc.mdl.placeholder.DefaultFormValuePostProcessorRetVal
-
- All Implemented Interfaces:
IFormValuePostProcessorRetVal
public final class DefaultFormValuePostProcessorRetVal extends Object implements IFormValuePostProcessorRetVal
Default implementation ofIFormValuePostProcessorRetVal.- Since:
- 8.4.1
-
-
Constructor Summary
Constructors Constructor Description DefaultFormValuePostProcessorRetVal(List<String[]> values)Creates a new instance with the given values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String[]>values()Gets the list of values after post-processing.
-
-
-
Method Detail
-
values
public List<String[]> values()
Description copied from interface:IFormValuePostProcessorRetValGets the list of values after post-processing. When null, uses the original values as provided in theparameters. Can be used when the post-processor mutates / modifies the values in-place.- Specified by:
valuesin interfaceIFormValuePostProcessorRetVal- Returns:
- The list of values after post-processing, or null to use the original values.
-
-