Interface SMStringJaroWinkler
-
- All Superinterfaces:
SimilarityMeasure,SMString
- All Known Implementing Classes:
SMStringJaroWinklerImpl
public interface SMStringJaroWinkler extends SMString
Measures the JaroWinkler similarity of two strings. For further explanation refer to the wiki.- Author:
- Alexander Schultheis
-
-
Field Summary
Fields Modifier and Type Field Description static booleanDEFAULT_CASE_SENSITIVEThe default value for case sensitive is true.static StringNAMEName of similarity measure is "StringJaroWinkler".-
Fields inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
COMPONENT, COMPONENT_KEY, LOG_ORDER_NAME_NOT_FOUND
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisCaseSensitive()voidsetCaseInsensitive()voidsetCaseSensitive()-
Methods inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
compute, getDataClass, getName, getSystemName, isForceOverride, isReusable, setForceOverride
-
-
-
-
Field Detail
-
NAME
static final String NAME
Name of similarity measure is "StringJaroWinkler".- See Also:
- Constant Field Values
-
DEFAULT_CASE_SENSITIVE
static final boolean DEFAULT_CASE_SENSITIVE
The default value for case sensitive is true.- See Also:
- Constant Field Values
-
-