Interface SMStringEqual
-
- All Superinterfaces:
SimilarityMeasure
,SMString
- All Known Implementing Classes:
SMStringEqualImpl
public interface SMStringEqual extends SMString
Compares two strings. The comparison can be case sensitive or insensitive.- Author:
- Rainer Maximini
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
DEFAULT_CASE_SENSITIVE
The default value for case sensitive is true.static String
NAME
Name of similarity measure is "StringEqual".-
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 boolean
isCaseInsensitive()
boolean
isCaseSensitive()
void
setCaseInsensitive()
void
setCaseSensitive()
-
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 "StringEqual".- 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
-
-