toGroupDefinitionType method
Implementation
GroupDefinitionType toGroupDefinitionType() {
switch (this) {
case 'DIMENSION':
return GroupDefinitionType.dimension;
case 'TAG':
return GroupDefinitionType.tag;
case 'COST_CATEGORY':
return GroupDefinitionType.costCategory;
}
throw Exception('$this is not known in enum GroupDefinitionType');
}