add new concept report

This commit is contained in:
Adrien
2026-04-18 17:54:54 +02:00
parent 5f03e1f41b
commit c7a77af2f4
29 changed files with 1892 additions and 41 deletions
@@ -0,0 +1,27 @@
package com.aiteacher.enrichment;
public enum ConceptFacet {
DEFINITION("Definition & Overview"),
ANATOMY("Anatomy"),
PATHOPHYSIOLOGY("Pathophysiology"),
EPIDEMIOLOGY("Epidemiology"),
CLINICAL_PRESENTATION("Clinical Presentation"),
IMAGING("Imaging"),
CLASSIFICATION("Classification & Grading"),
INDICATIONS("Indications & Patient Selection"),
SURGICAL_TECHNIQUE("Surgical Technique"),
NONSURGICAL_MANAGEMENT("Non-surgical Management"),
COMPLICATIONS("Complications"),
OUTCOMES_FOLLOWUP("Outcomes & Follow-up"),
OTHER("Other");
private final String displayTitle;
ConceptFacet(String displayTitle) {
this.displayTitle = displayTitle;
}
public String displayTitle() {
return displayTitle;
}
}