toEntityType method
Implementation
EntityType toEntityType() {
switch (this) {
case 'MEDICATION':
return EntityType.medication;
case 'MEDICAL_CONDITION':
return EntityType.medicalCondition;
case 'PROTECTED_HEALTH_INFORMATION':
return EntityType.protectedHealthInformation;
case 'TEST_TREATMENT_PROCEDURE':
return EntityType.testTreatmentProcedure;
case 'ANATOMY':
return EntityType.anatomy;
case 'TIME_EXPRESSION':
return EntityType.timeExpression;
}
throw Exception('$this is not known in enum EntityType');
}