Interface RuleMessageParameterDecorator
-
- All Superinterfaces:
java.io.Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface RuleMessageParameterDecorator extends java.io.SerializableA parameter decorator can be used to change the message parameters after they were formatted.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringdecorate(java.lang.String formattedValue, RuleParameterData parameter)
-
-
-
Method Detail
-
decorate
java.lang.String decorate(java.lang.String formattedValue, RuleParameterData parameter)- Parameters:
formattedValue- - the formatted value of the parameterparameter- - the parameter- Returns:
- the decorated value
-
-