toWafRuleType method

WafRuleType toWafRuleType()

Implementation

WafRuleType toWafRuleType() {
  switch (this) {
    case 'REGULAR':
      return WafRuleType.regular;
    case 'RATE_BASED':
      return WafRuleType.rateBased;
    case 'GROUP':
      return WafRuleType.group;
  }
  throw Exception('$this is not known in enum WafRuleType');
}