Interface StringDistance
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
MetricStringDistance
,NormalizedStringDistance
- All Known Implementing Classes:
Cosine
,Damerau
,Jaccard
,JaroWinkler
,Levenshtein
,LongestCommonSubsequence
,MetricLCS
,NGram
,NormalizedLevenshtein
,OptimalStringAlignment
,QGram
,RatcliffObershelp
,Sift4
,SorensenDice
,WeightedLevenshtein
public interface StringDistance extends Serializable
- Author:
- Thibault Debatty
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
distance(String s1, String s2)
Compute and return a measure of distance.
-