Interface IFormValuePostProcessorParams
-
public interface IFormValuePostProcessorParamsParameters provided to aform value post processorwhen processing form field values.- Since:
- 8.4.1
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringfieldName()The name of the form field for which the values are provided.StringplaceholderContent()The content of the placeholder, e.g.IFormReplacerParamsreplaceParameters()The placeholder parameters as provided by the replacer engine.List<String[]>values()Gets the resolved form values.
-
-
-
Method Detail
-
fieldName
String fieldName()
The name of the form field for which the values are provided. When the name was an alias, this is the name corresponding to the form field with that alias.- Returns:
- The name of the form field.
-
placeholderContent
String placeholderContent()
The content of the placeholder, e.g. for[%myField%]this would bemyField.- Returns:
- The content of the placeholder.
-
replaceParameters
IFormReplacerParams replaceParameters()
The placeholder parameters as provided by the replacer engine.- Returns:
- The placeholder parameters.
-
-