toSavingsPlanRateUnit method

SavingsPlanRateUnit toSavingsPlanRateUnit()

Implementation

SavingsPlanRateUnit toSavingsPlanRateUnit() {
  switch (this) {
    case 'Hrs':
      return SavingsPlanRateUnit.hrs;
    case 'Lambda-GB-Second':
      return SavingsPlanRateUnit.lambdaGbSecond;
    case 'Request':
      return SavingsPlanRateUnit.request;
  }
  throw Exception('$this is not known in enum SavingsPlanRateUnit');
}