Package org.deri.grefine.reconcile.rdf.factories.JenaTextSparqlQueryFactory

Examples of org.deri.grefine.reconcile.rdf.factories.JenaTextSparqlQueryFactory.ScoredLabel


      if(seen.contains(entityUri)){
        //already seen
        continue;
      }
      seen.add(entityUri);
      ScoredLabel scoredLabel = getPreferredLabel(solution, queryString, searchPropertyUris);
      if(scoredLabel.score >= matchThreshold){
        if(match){
          moreThanOneMatch = true;
        }else{
          match = true;
View Full Code Here


    }
    if(bestLabel.isEmpty()){
      //fail... should never get here as bound restrictions are added to the SPARQL query used
      throw new RuntimeException("could not find label in the resultset for " + queryString);
    }
    return new ScoredLabel(bestLabel, maxScore);
  }
View Full Code Here

TOP

Related Classes of org.deri.grefine.reconcile.rdf.factories.JenaTextSparqlQueryFactory.ScoredLabel

Copyright © 2018 www.massapicom. 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.