Interface RuleParametersConverter
- All Known Implementing Classes:
DefaultRuleParametersConverter
public interface RuleParametersConverter
Implementations of this interface can perform conversions between parameter data objects and a String representation
of those objects.
-
Method Summary
Modifier and TypeMethodDescriptionfromString(String parameters) Converts the String representation to parameter data objects.toString(List<RuleParameterData> parameters) Converts the parameter data objects to a String representation.
-
Method Details
-
toString
Converts the parameter data objects to a String representation.- Parameters:
parameters- - the parameter data objects- Returns:
- the String representation
-
fromString
Converts the String representation to parameter data objects.- Parameters:
parameters- - the String representation- Returns:
- the parameter data objects
-