toSchedulingStrategy method

SchedulingStrategy toSchedulingStrategy()

Implementation

SchedulingStrategy toSchedulingStrategy() {
  switch (this) {
    case 'REPLICA':
      return SchedulingStrategy.replica;
    case 'DAEMON':
      return SchedulingStrategy.daemon;
  }
  throw Exception('$this is not known in enum SchedulingStrategy');
}