Package com.wcohen.ss

Examples of com.wcohen.ss.Levenstein


public class LevenshteinDistance extends MetricDistance {

    StringDistance distance;

    public LevenshteinDistance() {
        this.distance = new Levenstein();
    }
View Full Code Here


     * @param pattern The pattern for this instance.
     * @param projectName The possibly null current project name.
     */
    public FilePathComparator(String pattern, String projectName)
    {
      this.distance = new Levenstein();
      this.pattern = pattern;
      this.pattern = this.pattern.replaceAll("\\.\\*\\??", "");
      this.projectName = projectName;
    }
View Full Code Here

TOP

Related Classes of com.wcohen.ss.Levenstein

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.