toProtectionGroupAggregation method

ProtectionGroupAggregation toProtectionGroupAggregation()

Implementation

ProtectionGroupAggregation toProtectionGroupAggregation() {
  switch (this) {
    case 'SUM':
      return ProtectionGroupAggregation.sum;
    case 'MEAN':
      return ProtectionGroupAggregation.mean;
    case 'MAX':
      return ProtectionGroupAggregation.max;
  }
  throw Exception('$this is not known in enum ProtectionGroupAggregation');
}