toValue method

String toValue()

Implementation

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