toInstanceGroupType method

InstanceGroupType toInstanceGroupType()

Implementation

InstanceGroupType toInstanceGroupType() {
  switch (this) {
    case 'MASTER':
      return InstanceGroupType.master;
    case 'CORE':
      return InstanceGroupType.core;
    case 'TASK':
      return InstanceGroupType.task;
  }
  throw Exception('$this is not known in enum InstanceGroupType');
}