toCapacityTypes method

CapacityTypes toCapacityTypes()

Implementation

CapacityTypes toCapacityTypes() {
  switch (this) {
    case 'ON_DEMAND':
      return CapacityTypes.onDemand;
    case 'SPOT':
      return CapacityTypes.spot;
  }
  throw Exception('$this is not known in enum CapacityTypes');
}