toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case MappingRuleMatchType.equals:
      return 'Equals';
    case MappingRuleMatchType.contains:
      return 'Contains';
    case MappingRuleMatchType.startsWith:
      return 'StartsWith';
    case MappingRuleMatchType.notEqual:
      return 'NotEqual';
  }
}