Package ke.go.moh.oec.mpi.match

Examples of ke.go.moh.oec.mpi.match.NameMatch


     */
    public Set<SiteCandidate> find(String siteName, String identifier) {
        List<SiteMatch> siteMatchList = null;
        TreeSet<SiteCandidate> siteCandidateSet = new TreeSet<SiteCandidate>();
        // Note: the NameMatch cache is not used, since duplicate site names are not expected.
        NameMatch testNameMatch = new NameMatch(siteName);
        double minScore = 100;

        for (SiteMatch s : siteList) {
            Double score = s.computeScore(testNameMatch);
            // System.out.println("Site " + s.getSiteCode() + " " + s.getSiteName() + " score " + score);
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.mpi.match.NameMatch

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.