public interface Mapping extends MetaMapElement
for (Utterance utterance: result.getUtteranceList()) {
for (PCM pcm: utterance.getPCMList()) {
...
for (Mapping map: pcm.getMappingList()) {
System.out.println(" Map Score: " + map.getScore());
for (Ev mapEv: map.getEvList()) {
System.out.println(" Score: " + mapEv.getScore());
System.out.println(" Concept Id: " + mapEv.getConceptId());
System.out.println(" Concept Name: " + mapEv.getConceptName());
...
}
}
}
}
Created: Thu May 21 17:00:23 2009
| Modifier and Type | Method and Description |
|---|---|
List<Ev> |
getEvList() |
int |
getScore() |
Copyright © 2016. All rights reserved.