final Map<Integer,Set<UmlsConcept>> conceptMap = new HashMap<Integer,Set<UmlsConcept>>();
// Iterate over the LookupHit objects and group Snomed codes by NE type
// For each NE type for which there is a hit, get all the Snomed codes
// that map to the given CUI.
for ( LookupHit lookupHit : entry.getValue() ) {
final MetaDataHit mdh = lookupHit.getDictMetaDataHit();
final String cui = mdh.getMetaFieldValue( cuiPropKey );
final String tui = mdh.getMetaFieldValue( tuiPropKey );
//String text = lh.getDictMetaDataHit().getMetaFieldValue("text");
if ( !_validTuiSet.contains( tui ) ) {
continue;
}
final String cuiTuiKey = getUniqueKey( cui, tui );