Interface SMCollectionIsolatedMapping
-
- All Superinterfaces:
SimilarityMeasure
,SMCollection
- All Known Implementing Classes:
SMCollectionIsolatedMappingImpl
public interface SMCollectionIsolatedMapping extends SMCollection
General
This similarity measure computes the similarity of two
CollectionClass
es by taking the similarity of the elements into account. It always computes the the similarity of one queryObject to the best matching case element and reports the average of these similarities.In collections it can be necessary to select another
SimilarityMeasure
for the elements. Therefore, the methodSMCollection.setSimilarityToUse(String)
is provided to define the similarity measure that should be used for the similarity computation of the elements. If the give similarity measure name is not in theSimilarityModel
or no similarity measure name is defined, the default similarity measure will used.- Author:
- rmaximi
-
-
Field Summary
Fields Modifier and Type Field Description static String
NAME
Name of similarity measure is "CollectionIsolatedMapping".-
Fields inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
COMPONENT, COMPONENT_KEY, LOG_ORDER_NAME_NOT_FOUND
-
Fields inherited from interface de.uni_trier.wi2.procake.similarity.base.collection.SMCollection
LOG_ATTRIBUTE_NAME_NOT_FOUND
-
-
Method Summary
-
Methods inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
compute, getDataClass, getName, getSystemName, isForceOverride, isReusable, setForceOverride
-
Methods inherited from interface de.uni_trier.wi2.procake.similarity.base.collection.SMCollection
getSimilarityToUse, setSimilarityToUse
-
-
-
-
Field Detail
-
NAME
static final String NAME
Name of similarity measure is "CollectionIsolatedMapping".- See Also:
- Constant Field Values
-
-