Examples of JaroWinklerDistance


Examples of org.apache.lucene.search.spell.JaroWinklerDistance

 
  /**
   * @param args
   */
  public static void main(String[] args) {
      StringDistance sd = new JaroWinklerDistance();
     
      displayDistance(sd, "henka", "henkan");
      displayDistance(sd, "al", "al");
      displayDistance(sd, "martha", "marhta");
      displayDistance(sd, "jones", "johnson");
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.