Package net.sf.basedb.util.fuzzy
Class StringMatcher.FuzzyMatch
- java.lang.Object
-
- net.sf.basedb.util.fuzzy.StringMatcher.FuzzyMatch
-
- Enclosing class:
- StringMatcher
public static class StringMatcher.FuzzyMatch extends Object
Wrapper that holds information about a fuzzy match.
-
-
Constructor Summary
Constructors Constructor Description FuzzyMatch(String key, String value, double score)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
Get the key string.double
getScore()
Get the similarity score of the key/value strings.String
getValue()
Get the value string.
-
-
-
Method Detail
-
getKey
public String getKey()
Get the key string.
-
getValue
public String getValue()
Get the value string.
-
getScore
public double getScore()
Get the similarity score of the key/value strings.- See Also:
StringMatcher.getScore(String, String)
-
-