Class ScoringFunction
java.lang.Object
com.azure.search.documents.indexes.models.ScoringFunction
- Direct Known Subclasses:
DistanceScoringFunction
,FreshnessScoringFunction
,MagnitudeScoringFunction
,TagScoringFunction
Base type for functions that can modify document scores during ranking.
-
Constructor Summary
ConstructorsConstructorDescriptionScoringFunction
(String fieldName, double boost) Creates an instance of ScoringFunction class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
getBoost()
Get the boost property: A multiplier for the raw score.Get the fieldName property: The name of the field used as input to the scoring function.Get the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".setInterpolation
(ScoringFunctionInterpolation interpolation) Set the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".
-
Constructor Details
-
ScoringFunction
Creates an instance of ScoringFunction class.- Parameters:
fieldName
- the fieldName value to set.boost
- the boost value to set.
-
-
Method Details
-
getFieldName
Get the fieldName property: The name of the field used as input to the scoring function.- Returns:
- the fieldName value.
-
getBoost
public double getBoost()Get the boost property: A multiplier for the raw score. Must be a positive number not equal to 1.0.- Returns:
- the boost value.
-
getInterpolation
Get the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".- Returns:
- the interpolation value.
-
setInterpolation
Set the interpolation property: A value indicating how boosting will be interpolated across document scores; defaults to "Linear".- Parameters:
interpolation
- the interpolation value to set.- Returns:
- the ScoringFunction object itself.
-