toValue method
Implementation
String toValue() {
switch (this) {
case RuleExecutionMode.allMatched:
return 'ALL_MATCHED';
case RuleExecutionMode.firstMatched:
return 'FIRST_MATCHED';
}
}
String toValue() {
switch (this) {
case RuleExecutionMode.allMatched:
return 'ALL_MATCHED';
case RuleExecutionMode.firstMatched:
return 'FIRST_MATCHED';
}
}