Interface SMNumeric
-
- All Superinterfaces:
SimilarityMeasure
- All Known Subinterfaces:
SMNumericExponential,SMNumericFuzzy,SMNumericLinear,SMNumericSigmoid,SMNumericThreshold
- All Known Implementing Classes:
SMNumericExponentialImpl,SMNumericFuzzyImpl,SMNumericImpl,SMNumericLinearImpl,SMNumericSigmoidImpl,SMNumericThresholdImpl
public interface SMNumeric extends SimilarityMeasure
Abstract interface that collects all similarity measures forAtomicClass.Numeric similarity measures can be used on several
AtomicClasses. But therefore, it is important to specify an order so that the elements are totally ordered.- Author:
- Rainer Maximini
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSMNumeric.ZERO_OUT_STRATEGIESPossible definitions of asymmetric zero-out strategies
-
Field Summary
Fields Modifier and Type Field Description static SMNumeric.ZERO_OUT_STRATEGIESDEFAULT_STRATEGYDefault strategy for numeric similarity computations isSMNumeric.ZERO_OUT_STRATEGIES.NONE.-
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 SMNumeric.ZERO_OUT_STRATEGIESgetAsymmetricStrategy()gets the asymmetric strategyvoidsetAsymmetricStrategy(SMNumeric.ZERO_OUT_STRATEGIES strategy)sets the asymmetric strategy-
Methods inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
compute, getDataClass, getName, getSystemName, isForceOverride, isReusable, setForceOverride
-
-
-
-
Field Detail
-
DEFAULT_STRATEGY
static final SMNumeric.ZERO_OUT_STRATEGIES DEFAULT_STRATEGY
Default strategy for numeric similarity computations isSMNumeric.ZERO_OUT_STRATEGIES.NONE.
-
-
Method Detail
-
getAsymmetricStrategy
SMNumeric.ZERO_OUT_STRATEGIES getAsymmetricStrategy()
gets the asymmetric strategy- Returns:
-
setAsymmetricStrategy
void setAsymmetricStrategy(SMNumeric.ZERO_OUT_STRATEGIES strategy)
sets the asymmetric strategy- Parameters:
strategy-
-
-