toValue method
Implementation
String toValue() {
switch (this) {
case ProtectionGroupAggregation.sum:
return 'SUM';
case ProtectionGroupAggregation.mean:
return 'MEAN';
case ProtectionGroupAggregation.max:
return 'MAX';
}
}