org.molgenis.data.icd10.Icd10ClassExpander Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-icd10 Show documentation
Show all versions of molgenis-data-icd10 Show documentation
ICD-10 related functionality
package org.molgenis.data.icd10;
import java.util.Collection;
import org.molgenis.data.Entity;
/** Expands a list of 'eu_bbmri_eric_disease_types' entities to include all of their children. */
public interface Icd10ClassExpander {
Collection expandClasses(Collection diseaseClasses);
}