DOC

de.linuxusers.levenshtein : oz-generic-levenshtein

Maven & Gradle

Sep 11, 2012
1 usages

GenericLevenshtein · YET ANOTHER IMPLEMENTATION OF LEVENSHTEIN DISTANCE GenericLevenshtein is an implementation of Minimum Edit Distance, also called Levenshtein Distance, written by Ramon Ziai and Niels Ott. This algorithm is very popular and it is often used to compute the similarity of strings. The difference in the presented implementation is that it can operate on sequences of any Java object implementing equals(Object). So no matter if you want to compare genome sequences or sequences of numbers, or just strings, here you go! Furthermore, the costs of the replace, insert, and delete operations can be customized by implementing the simple WeightCalculator<T> interface. In that case it is not a requirement to rely on equals(Object) as your implementation can do whatever you like it to do in oder to compare objects.

Table Of Contents

Latest Version

Download de.linuxusers.levenshtein : oz-generic-levenshtein Javadoc & API Documentation - Latest Versions:

All Versions

Download de.linuxusers.levenshtein : oz-generic-levenshtein Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.4.x

How to open Javadoc JAR file in web browser

  1. Rename the file oz-generic-levenshtein-0.4.0-javadoc.jar to oz-generic-levenshtein-0.4.0-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder oz-generic-levenshtein-0.4.0-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "oz-generic-levenshtein-0.4.0-sources.jar" -d "oz-generic-levenshtein-0.4.0-javadoc" -subpackages 

Advertisement