Examples of OntologyConcept


Examples of org.apache.ctakes.typesystem.type.refsem.OntologyConcept

      FSArray ocArr = tokenAnt.getOntologyConceptArr();
      if (ocArr != null)
      {
        for (int i = 0; i < ocArr.size() && !isDrugNER; i++)
        {
          OntologyConcept oc = (OntologyConcept) ocArr.get(i);

          String scheme = oc.getCodingScheme();
          if (scheme.compareTo("RXNORM") == 0)
          {
            isDrugNER = true;
          }
View Full Code Here

Examples of org.apache.ctakes.typesystem.type.refsem.OntologyConcept

                FSArray ocArr = neAnnot.getOntologyConceptArr();
                if (ocArr != null)
                {
                  for (int i = 0; i < ocArr.size(); i++)
                  {
                    OntologyConcept oc = (OntologyConcept) ocArr.get(i);
                    neCui = oc.getCode();
                    rxNormCui = oc.getOui();
                  }
                }

                MedicationStrength strengthTerm = neAnnot.getMedicationStrength();//getStrength();
                String strengthTermString = "null";
View Full Code Here

Examples of ru.spbu.math.ontologycomparison.zhukova.logic.ontologygraph.impl.OntologyConcept

        label = null;
        comment = null;
    }

    public IOntologyConcept getOntologyConcept(IRI uri) {
        return new OntologyConcept(uri, this.getLabel());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.