toResourceTypeValues method
Implementation
ResourceTypeValues toResourceTypeValues() {
switch (this) {
case 'VOLUME':
return ResourceTypeValues.volume;
case 'INSTANCE':
return ResourceTypeValues.instance;
}
throw Exception('$this is not known in enum ResourceTypeValues');
}