toPolicyOwnerEntityType method

PolicyOwnerEntityType toPolicyOwnerEntityType()

Implementation

PolicyOwnerEntityType toPolicyOwnerEntityType() {
  switch (this) {
    case 'USER':
      return PolicyOwnerEntityType.user;
    case 'ROLE':
      return PolicyOwnerEntityType.role;
    case 'GROUP':
      return PolicyOwnerEntityType.group;
  }
  throw Exception('$this is not known in enum PolicyOwnerEntityType');
}