toInstanceRoleType method

InstanceRoleType toInstanceRoleType()

Implementation

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